Global Sounds system
This commit is contained in:
parent
5677971bf0
commit
ba3306c04c
15 changed files with 232 additions and 1 deletions
17
addons/capri_tools/capri_tools.gd
Normal file
17
addons/capri_tools/capri_tools.gd
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue