diff options
| author | Anson Bridges <bridges.anson@gmail.com> | 2022-09-02 23:12:33 -0700 |
|---|---|---|
| committer | Anson Bridges <bridges.anson@gmail.com> | 2022-09-02 23:12:33 -0700 |
| commit | 4d51178d32e07c070c61aa7567856bec7eda3639 (patch) | |
| tree | 7ef4884dd2221340f9c1ed96bd0f52c761ae9fb0 /ui/HUD.gd | |
| parent | 0939d84e611f1c63fd5805339a2f777251fb1653 (diff) | |
hit/killsounds, swimming, main menu, fixed explosion physics
Diffstat (limited to 'ui/HUD.gd')
| -rw-r--r-- | ui/HUD.gd | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -59,6 +59,12 @@ func ui_hide_chat(): if !$ChatPrompt.visible: $Chat.visible = false +func ui_play_hitsound(): + $AudioCues/Hitsound.play() + +func ui_play_killsound(): + $AudioCues/Killsound.play() + func update_characters(): for btn in character_list.get_children(): btn.queue_free() |
