Improved component system

This commit is contained in:
2024-02-07 23:04:19 +01:00
parent 97087ad03e
commit c4a9da0880
22 changed files with 263 additions and 188 deletions

View File

@ -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

View File

@ -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")