mirror of
https://github.com/hobbesjaap/time-sampling-form.git
synced 2024-11-09 12:12:58 +00:00
15 lines
203 B
GDScript
15 lines
203 B
GDScript
extends ProgressBar
|
|
|
|
|
|
onready var global_ints = $"/root/GlobalInts"
|
|
|
|
var time_lefts : int
|
|
|
|
func _ready():
|
|
pass
|
|
|
|
|
|
func _process(_delta):
|
|
time_lefts = $"%TwentySecondTimer".time_left
|
|
value = time_lefts
|