5 lines
123 B
GDScript3
5 lines
123 B
GDScript3
|
extends Control
|
||
|
|
||
|
|
||
|
func update_duration(time: float):
|
||
|
$Duration/Label.text = "%d:%02d" % [floor(time / 60), int(time) % 60]
|