mirror of
https://github.com/hobbesjaap/time-sampling-form.git
synced 2024-11-08 19:52:58 +00:00
15 lines
204 B
GDScript
15 lines
204 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
|