Files
MIRROR-The-Mobius-Line/Assets/Scripts/Player/PlayerCollisions.cs
2025-04-02 13:45:27 +01:00

14 lines
325 B
C#

using UnityEngine;
public partial class PlayerMovement : MonoBehaviour
{
private void OnTriggerStay(Collider other)
{
// Stops it trying to find the normals of portals
// if (other.CompareTag("Portal")) { return; }
// Else adds it to the list
// m_WallCollisions.Add(other);
}
}