GoSlides/tools/progress_bar.gd

18 lines
324 B
GDScript3
Raw Normal View History

2024-09-27 14:29:54 +10:00
extends ProgressBar
@export var speed : float = 2
2024-09-27 17:15:11 +10:00
@export var target_value : float
func _ready():
max_value = 60000
2024-09-27 14:29:54 +10:00
func _process(delta: float) -> void:
2024-09-27 17:15:11 +10:00
value = lerp(value, target_value, speed * delta)
2024-09-27 14:29:54 +10:00
func _on_visibility_changed() -> void:
if visible:
2024-09-27 17:15:11 +10:00
$Timer.start(0)
func _on_timer_timeout() -> void:
value = 0