mirror of
https://github.com/kristoferssolo/FuncIt.git
synced 2025-10-21 19:30:35 +00:00
19 lines
363 B
GDScript
19 lines
363 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()
|
|
|
|
|
|
func _on_fullscreen_pressed():
|
|
OS.window_fullscreen = !OS.window_fullscreen
|