Added menu settings add-on

This commit is contained in:
2026-03-07 14:16:44 +01:00
parent 8b7a8e014f
commit df8c8c6c3b
70 changed files with 4053 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
@tool
extends EditorPlugin
var pluginPath: String = get_script().resource_path.get_base_dir()
const settingsDataManagerPath: String = "/singletons/settings_data_manager.gd"
func _enter_tree():
add_autoload_singleton("SettingsDataManager", pluginPath + settingsDataManagerPath)
func _exit_tree():
remove_autoload_singleton("SettingsDataManager")