summaryrefslogtreecommitdiff
path: root/ui/start_screen.gd
blob: 418e40761d6ca45f42002359a1848c2822a31e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
extends Control


func _ready() -> void:
	%CountdownTimer.start()


func _process(delta: float) -> void:
	%CountdownLabel.text = "%.1f" % %CountdownTimer.time_left


func _on_countdown_timer_timeout() -> void:
	(func(): get_tree().change_scene_to_file("res://stage/stage_01.tscn")).call_deferred()