mirror of
https://github.com/hobbesjaap/time-sampling-form.git
synced 2024-11-09 20:22:58 +00:00
14 lines
262 B
GDScript3
14 lines
262 B
GDScript3
|
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
|