diff options
Diffstat (limited to 'game/src/MainMenu/MainMenu.gd')
-rw-r--r-- | game/src/MainMenu/MainMenu.gd | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/game/src/MainMenu/MainMenu.gd b/game/src/MainMenu/MainMenu.gd index 000dc69..cd333a3 100644 --- a/game/src/MainMenu/MainMenu.gd +++ b/game/src/MainMenu/MainMenu.gd @@ -12,23 +12,28 @@ func _ready(): func _on_new_game_button_pressed(): + SFX.play("click") print("Start a new game!") get_tree().change_scene_to_file("res://src/SampleGame.tscn") func _on_continue_button_pressed(): + SFX.play("click") print("Continue last game!") func _on_multi_player_button_pressed(): + SFX.play("click") print("Have fun with friends!") func _on_options_button_pressed(): + SFX.play("click") print("Check out some options!") options_button_pressed.emit() func _on_exit_button_pressed(): + await SFX.play("click") print("See you later!") get_tree().quit() |