Global Sounds system

This commit is contained in:
Haze Weathers 2025-03-08 16:32:47 -05:00
parent 5677971bf0
commit ba3306c04c
15 changed files with 232 additions and 1 deletions

View file

@ -0,0 +1,17 @@
@tool
extends EditorPlugin
const GlobalSoundSelectorPlugin = preload("global_sound_selector_plugin.gd")
var global_sound_selector_plugin: EditorInspectorPlugin
func _enter_tree() -> void:
global_sound_selector_plugin = GlobalSoundSelectorPlugin.new()
add_inspector_plugin(global_sound_selector_plugin)
func _exit_tree() -> void:
remove_inspector_plugin(global_sound_selector_plugin)