diff options
author | tpart <tpart120@proton.me> | 2024-06-29 22:08:39 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-06-29 22:08:41 +0200 |
commit | 9a76089edbae93c874b24c53a9b79f1fe10ebe2f (patch) | |
tree | 76f003962c2f1c1219c88e6ab02bf7c53a389afb /client/menu/ingame_menu.gd | |
parent | 424b4ef3716e74bcc54c3eefffe6ba7994d79270 (diff) | |
download | hurrycurry-9a76089edbae93c874b24c53a9b79f1fe10ebe2f.tar hurrycurry-9a76089edbae93c874b24c53a9b79f1fe10ebe2f.tar.bz2 hurrycurry-9a76089edbae93c874b24c53a9b79f1fe10ebe2f.tar.zst |
Add Sound singleton; Restructure sound system; Add button sounds to ingame menu
Diffstat (limited to 'client/menu/ingame_menu.gd')
-rw-r--r-- | client/menu/ingame_menu.gd | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/menu/ingame_menu.gd b/client/menu/ingame_menu.gd index 73f4dbb3..6fa83a55 100644 --- a/client/menu/ingame_menu.gd +++ b/client/menu/ingame_menu.gd @@ -3,6 +3,9 @@ extends Control @onready var anim = $AnimationPlayer @onready var options = $Side/Margin/Options +func _ready(): + Global.connect_button_sounds(self) + func act(): show() anim.play("activate") |