aboutsummaryrefslogtreecommitdiff
path: root/game/src/MainMenu.gd
diff options
context:
space:
mode:
Diffstat (limited to 'game/src/MainMenu.gd')
-rw-r--r--game/src/MainMenu.gd12
1 files changed, 3 insertions, 9 deletions
diff --git a/game/src/MainMenu.gd b/game/src/MainMenu.gd
index 82b7b2f..de49ec4 100644
--- a/game/src/MainMenu.gd
+++ b/game/src/MainMenu.gd
@@ -1,17 +1,11 @@
extends Control
+signal options_button_pressed
-# Called when the node enters the scene tree for the first time.
func _ready():
print("From GDScript")
TestSingleton.hello_singleton()
- $CenterContainer/VBoxContainer/NewGameButton.grab_focus()
- pass # Replace with function body.
-
-
-## Called every frame. 'delta' is the elapsed time since the previous frame.
-#func _process(delta):
-# pass
+ $VBox/Center/VBox/NewGameButton.grab_focus()
func _on_new_game_button_pressed():
@@ -29,7 +23,7 @@ func _on_multi_player_button_pressed():
func _on_options_button_pressed():
print("Check out some options!")
- get_tree().change_scene_to_file("res://src/OptionsMenu.tscn")
+ options_button_pressed.emit()
func _on_exit_button_pressed():