Audio manager implementation

This commit is contained in:
2026-03-11 10:07:47 -04:00
parent e11eddf1b4
commit ed4359686c
23 changed files with 61 additions and 7 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ func _show_victory() -> void:
var btn := Button.new()
btn.text = "RETURN TO HUB"
btn.position = Vector2(-80, 70)
btn.pressed.connect(_fade_out_then_hub)
btn.pressed.connect(func(): AudioManager.play("ui_click"); _fade_out_then_hub())
_root.add_child(btn)
_fade_in()