Improved network communication
This commit is contained in:
14
client/character/health/HealthComponent.gd
Normal file
14
client/character/health/HealthComponent.gd
Normal file
@ -0,0 +1,14 @@
|
||||
class_name HealthComponent
|
||||
extends Node
|
||||
|
||||
@export var max_health: float
|
||||
var health: float
|
||||
|
||||
func _ready():
|
||||
pass
|
||||
|
||||
func take_damage(attack: Attack):
|
||||
health -= attack.damage
|
||||
|
||||
if health <= 0:
|
||||
get_parent().queue_free()
|
Reference in New Issue
Block a user