Files
puzzle-quest/scenes/main.gd
T

10 lines
176 B
GDScript
Raw Normal View History

2021-05-08 13:16:13 +02:00
extends Node
# Quit the game
func _on_Quit_pressed():
get_tree().quit(0)
2021-05-08 13:22:37 +02:00
# Load scene about
func _on_About_pressed():
get_tree().change_scene("res://scenes/UI/About.tscn")