Snoweuph
3037c1fce0
- Binding Main Menu and Game Scene Together TODO: Settings, Score, Highscore, Controller Support, Color Pallet Rework
12 lines
250 B
GDScript
12 lines
250 B
GDScript
extends Control
|
|
|
|
|
|
func _on_start_button_pressed():
|
|
get_tree().change_scene_to_file("res://Scene/Game.tscn")
|
|
|
|
func _on_quit_button_pressed():
|
|
get_tree().quit()
|
|
|
|
|
|
func _on_about_button_pressed():
|
|
OS.shell_open("https://git.euph.dev/snoweuph/Snake")
|