Lots of localization setup, added controller BBCode stuff also.

This commit is contained in:
2025-05-25 14:09:40 -05:00
parent f5cb84e0c9
commit 6a39e1f2df
825 changed files with 16497 additions and 18 deletions

View File

@@ -0,0 +1,19 @@
@tool
extends EditorPlugin
var inspector_plugin : EditorInspectorPlugin
func _enable_plugin():
add_autoload_singleton("ControllerIcons", "res://addons/controller_icons/ControllerIcons.gd")
func _disable_plugin():
remove_autoload_singleton("ControllerIcons")
func _enter_tree():
inspector_plugin = preload("res://addons/controller_icons/objects/ControllerIconEditorInspector.gd").new()
inspector_plugin.editor_interface = get_editor_interface()
add_inspector_plugin(inspector_plugin)
func _exit_tree():
remove_inspector_plugin(inspector_plugin)