summaryrefslogtreecommitdiff
path: root/scripts/timer_label.gd
blob: 7a83ce9e4ca634c8a5524b2584d6bb6e2fd41450 (plain)
1
2
3
4
5
6
7
8
9
extends Label

func _ready():
	$Timer.start()
	text = "Time: " + str($Timer.time_left)

func _process(delta):
	text = "Time: " + str($Timer.time_left)