mirror of
https://github.com/hobbesjaap/time-sampling-form.git
synced 2024-11-12 21:52:58 +00:00
15 lines
203 B
GDScript3
15 lines
203 B
GDScript3
|
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
|