blob: c6a165ea20dd4420d57fd3214afa5c17a4502fe4 (
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()
|