mirror of
https://github.com/PashaBibko/The-Mobius-Line.git
synced 2026-04-04 01:49:07 +00:00
10 lines
172 B
C#
10 lines
172 B
C#
using UnityEngine;
|
|
|
|
public partial class PlayerMovement : MonoBehaviour
|
|
{
|
|
private void OnTriggerStay(Collider other)
|
|
{
|
|
m_WallCollisions.Add(other);
|
|
}
|
|
}
|