9 lines
168 B
GDScript
9 lines
168 B
GDScript
extends HBoxContainer
|
|
@onready var life_label = $life_label
|
|
|
|
func _ready():
|
|
life_label.text = str(3)
|
|
|
|
func update_life(health: int):
|
|
life_label.text = "%d" % health
|