changes + enemy particles

This commit is contained in:
Michael Campbell 2026-04-30 04:42:00 -04:00
parent 457de8dcaa
commit 0f8f737bc0
12 changed files with 2949 additions and 24 deletions

View file

@ -185,7 +185,7 @@ func damage(damager: Node3D, amount: int = 1) -> void:
if health <= 0: return
if state == State.DASHING:
if damager.has_method("kill"):
damager.kill()
damager.kill(velocity.normalized())
else:
if damage_clock <= 0.:
%CrashSFX.play()