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