TO SQUASH: Fixed issue.

This commit is contained in:
2026-08-27 15:34:06 -04:00
parent 21b0fd7648
commit 04ccf01eb4
6 changed files with 117 additions and 14 deletions
+8
View File
@@ -54,6 +54,14 @@ public class BallBase : MonoBehaviour
{
player.GetComponent<Player>().OnBarHit();
}
// Notify other systems if needed.
var worldFiller = GameObject.FindGameObjectWithTag("WorldFiller");
if (worldFiller != null)
{
worldFiller.GetComponent<WorldFiller>().ClearWalls();
}
}
}