Fix various issues

This commit is contained in:
2023-09-12 09:35:00 -07:00
parent a5d36734ef
commit 37180e2def
21 changed files with 247 additions and 124 deletions

View File

@@ -14,6 +14,9 @@ public partial class BasicEnemy : Node3D
public void OnEnemyHit(Node3D node)
{
if (node is Character)
return;
_hp.TakeDamage(1);
if (_hp.CurrentHP <= 0)