12 lines
353 B
GDScript
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")
|