mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-05-28 06:51:54 +08:00
init
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
extends Node2D
|
||||
|
||||
@export var entity: EntityBase
|
||||
|
||||
@onready var healthBar = $"%health"
|
||||
|
||||
func _process(_delta):
|
||||
if entity:
|
||||
healthBar.maxValue = entity.maxHealth
|
||||
healthBar.setCurrent(entity.health)
|
||||
Reference in New Issue
Block a user