TO SQUASH: Fixed collision issues with the shark.

This commit is contained in:
2026-08-11 22:35:28 -04:00
parent 69beb2496d
commit 59e6e73b20
6 changed files with 171 additions and 18 deletions
+1 -8
View File
@@ -17,13 +17,6 @@ public class PlayerGun : MonoBehaviour
public void AnimationFinished()
{
if (player.lives > 0)
{
animator.SetTrigger("revived");
}
else
{
spriteRenderer.enabled = false;
}
spriteRenderer.enabled = false;
}
}