basically the whole game

This commit is contained in:
Sylvia 2026-07-09 04:59:48 -07:00
parent 949135cecb
commit 96dcfa9064
315 changed files with 34386 additions and 396 deletions

View file

@ -0,0 +1,13 @@
using UnityEngine;
public class ClearingProjectile : Projectile
{
protected override void OnTriggerEnter2D(Collider2D other)
{
base.OnTriggerEnter2D(other);
if (!other.CompareTag(tag) && other.TryGetComponent(out Projectile isProjectile))
{
Destroy(other.gameObject); //should it destroy or reflect?
}
}
}