mirror of
https://github.com/hobbesjaap/time-sampling-form.git
synced 2024-11-08 19:52:58 +00:00
14 lines
262 B
GDScript
14 lines
262 B
GDScript
extends ProgressBar
|
|
|
|
|
|
@onready var global_ints = $"/root/GlobalInts"
|
|
|
|
|
|
func _ready():
|
|
pass # Replace with function body.
|
|
|
|
|
|
func _process(_delta):
|
|
value = global_ints.locked_observations_intervals_remaining
|
|
max_value = global_ints.locked_observation_intervals
|