Now able to look any direction during wall ride

Also made a key bind for wallride
This commit is contained in:
2025-03-28 13:55:49 +00:00
parent b69a6028f6
commit 639cb88e63
8 changed files with 210 additions and 132 deletions

View File

@@ -0,0 +1,9 @@
using UnityEngine;
public partial class PlayerMovement : MonoBehaviour
{
private void OnTriggerStay(Collider other)
{
m_WallCollisions.Add(other);
}
}