mtd/Scripts/health_bar.gd

28 lines
735 B
GDScript3
Raw Normal View History

2024-02-22 06:22:22 +11:00
class_name HealthBar extends TextureProgressBar
@export var health_bar_gradient: Gradient
2024-02-22 06:22:22 +11:00
@onready var prev_bar: TextureProgressBar = $PreviousHealthBar
2024-02-22 06:22:22 +11:00
func setup(health: float) -> void:
max_value = health
value = health
prev_bar.max_value = health
prev_bar.value = health
2024-02-22 06:22:22 +11:00
func on_health_changed(health: float) -> void:
set_visible(true)
2024-02-22 06:22:22 +11:00
var health_went_down: bool = true if health < value else false
value = health
tint_progress = health_bar_gradient.sample(value / max_value)
if health_went_down:
2024-02-22 06:22:22 +11:00
var tween: Tween = create_tween()
tween.set_ease(Tween.EASE_OUT)
tween.set_trans(Tween.TRANS_QUINT)
tween.tween_interval(0.3)
tween.tween_property(prev_bar, "value", value, 0.7)
else:
prev_bar.value = value