You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
245 B
GDScript

extends Control
class_name Headbar
@onready var hpbar = (%HpBar as TextureProgressBar)
func _ready():
pass
func _process(delta):
pass
func on_hp_changed(value):
hpbar.value = value
func on_hp_max_changed(value):
hpbar.max_value = value