Files
Scavenger-2027/main.gd
T
2026-09-04 12:38:53 -04:00

12 lines
353 B
GDScript

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")