Initial commit

This commit is contained in:
2024-02-08 22:16:58 +01:00
commit 89e97a200c
524 changed files with 15626 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
@tool
extends EditorPlugin
const editorAddon = preload("res://addons/inputmapperpresetloader/InputMapperPresets.tscn")
var InputMapperPresetsScene
func _enter_tree():
InputMap.load_from_project_settings()
InputMapperPresetsScene = editorAddon.instantiate()
add_control_to_dock(EditorPlugin.DOCK_SLOT_RIGHT_UL, InputMapperPresetsScene)
func _exit_tree():
remove_control_from_docks(InputMapperPresetsScene)
InputMapperPresetsScene.free()