This commit is contained in:
Gerard Gascón 2025-04-24 17:06:24 +02:00
commit 18efc36800
161 changed files with 5008 additions and 0 deletions

View file

@ -0,0 +1,14 @@
@tool
extends EditorPlugin
func _enter_tree():
add_autoload_singleton("SoundManager", get_plugin_path() + "/sound_manager.gd")
func _exit_tree():
remove_autoload_singleton("SoundManager")
func get_plugin_path() -> String:
return get_script().resource_path.get_base_dir()