did things

This commit is contained in:
Nyx
2025-08-25 21:45:13 -06:00
parent a79a7551b3
commit 17380c2c60
43 changed files with 1147 additions and 624 deletions

View File

@@ -0,0 +1,18 @@
@tool
extends EditorPlugin
const AUTOLOAD_NAME = "STEAM_AUDIO"
func _enable_plugin() -> void:
add_autoload_singleton(AUTOLOAD_NAME,"res://addons/SteamAudioGodot/steam_audio_manager.tscn")
func _enter_tree() -> void:
# Initialization of the plugin goes here.
pass
func _exit_tree() -> void:
# Clean-up of the plugin goes here.
pass
func _disable_plugin() -> void:
remove_autoload_singleton(AUTOLOAD_NAME)