mirror of
https://github.com/kristoferssolo/FuncIt.git
synced 2025-10-21 19:30:35 +00:00
14 lines
265 B
GDScript
14 lines
265 B
GDScript
extends Control
|
|
|
|
|
|
func _on_play_pressed():
|
|
get_tree().change_scene("res://source/scenes/GUI/sinplayer_setup.tscn")
|
|
|
|
|
|
func _on_LAN_party_pressed():
|
|
get_tree().change_scene("res://source/scenes/GUI/network_setup.tscn")
|
|
|
|
|
|
func _on_exit_pressed():
|
|
get_tree().quit()
|