TO SQUASH: Jesus!!

This commit is contained in:
2026-08-19 13:18:26 -04:00
parent 1cf68b32a1
commit 24d3297daa
16 changed files with 607 additions and 320 deletions
+15
View File
@@ -0,0 +1,15 @@
using UnityEngine;
public class WallResetter : MonoBehaviour
{
// Update is called once per frame
void Update()
{
var walls = GameObject.FindGameObjectsWithTag("Wall");
foreach (var wall in walls)
{
wall.transform.rotation = Quaternion.identity;
}
}
}