File size: 222 Bytes
e7fdd7d |
1 2 3 4 5 6 7 8 9 10 11 12 |
extends Sprite3D
@onready var health_bar_2d = $SubViewport/HealthBar2D
func _ready():
#texture = $SubViewport.get_texture()
update_health(3.0)
pass
func update_health(value):
health_bar_2d.update_health(value, 3.0)
|