removed obsolete interfaces for health and damage
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 27s
Create tag and build when new code gets to main / Export (push) Successful in 5m25s

This commit is contained in:
2026-05-05 11:51:35 +02:00
parent 33f55d04f3
commit 68e36742af
41 changed files with 37 additions and 703 deletions

View File

@@ -9,10 +9,6 @@ public partial class Spawner : Node3D
[Export]
public RMovement? MovementInputs { get; set; }
[Export]
public RHealth? HealthInputs { get; set; }
[Export]
public RDamage? DamageInputs { get; set; }
[Export]
public Node3D Target { get; set; }
@@ -43,8 +39,6 @@ public partial class Spawner : Node3D
spawnedInstance.Target = Target;
spawnedInstance.RMovement = MovementInputs;
spawnedInstance.RDamage = DamageInputs;
spawnedInstance.RHealth = HealthInputs;
spawnedInstance.Init();
}