Re-enable collisions

This commit is contained in:
Steven Long
2023-09-07 23:28:00 -07:00
parent 8e363587b9
commit 5362240120
9 changed files with 36 additions and 78 deletions

View File

@@ -1,5 +1,5 @@
using Godot;
using System.Linq;
using Godot;
public partial class FireAtPlayer : Timer
{
@@ -21,9 +21,4 @@ public partial class FireAtPlayer : Timer
GetParent().AddChild(projectile);
}
}
private void OnDied()
{
Stop();
}
}