This commit is contained in:
2026-09-04 12:38:53 -04:00
parent 3de654d982
commit 7c567ec9dc
59 changed files with 2355 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
extends Control
func _ready() -> void:
$start.connect("pressed",start_pressed)
$tutorial.connect("pressed",tutorial_pressed)
func start_pressed() -> void:
get_tree().change_scene_to_file("res://Stations/Dev_test/dev_test.scn")
func tutorial_pressed() -> void:
get_tree().change_scene_to_file("res://Stations/TutorialStation/TutorialStation.scn")