Improved component system
This commit is contained in:
@ -2,10 +2,11 @@ class_name HealthComponent
|
||||
extends Node
|
||||
|
||||
@export var max_health: float
|
||||
|
||||
var health: float
|
||||
|
||||
func _ready():
|
||||
pass
|
||||
health = max_health
|
||||
|
||||
func take_damage(attack: Attack):
|
||||
health -= attack.damage
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
[ext_resource type="Script" path="res://character/health/HealthComponent.gd" id="1_403dm"]
|
||||
|
||||
[node name="HealthComponent" type="Node"]
|
||||
[node name="Health" type="Node"]
|
||||
script = ExtResource("1_403dm")
|
||||
|
Reference in New Issue
Block a user