From 9573d3ae4170f43f7f65224a16db7ad161a11e28 Mon Sep 17 00:00:00 2001 From: perivesta <> Date: Sat, 8 Jul 2023 15:53:37 +0200 Subject: add main menu, pause menu, basic level --- Scripts/main_menu.gd | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Scripts/main_menu.gd (limited to 'Scripts/main_menu.gd') diff --git a/Scripts/main_menu.gd b/Scripts/main_menu.gd new file mode 100644 index 0000000..3bfe28e --- /dev/null +++ b/Scripts/main_menu.gd @@ -0,0 +1,25 @@ +extends Control + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +func _process(delta): + pass + + +func _on_StartButton_pressed(): + get_tree().change_scene_to_file("res://Nodes/game.tscn") + + + +func _on_QuitButton_pressed(): + get_tree().quit() -- cgit