From 555e1fd702d49aac988b989bea91b4029dfbf798 Mon Sep 17 00:00:00 2001 From: Jeremy Smitherman Date: Sat, 25 Apr 2026 15:35:54 -0500 Subject: [PATCH] Fixed edged collision --- .idea/.idea.SpringJam2026/.idea/workspace.xml | 7 +------ Assets/Scripts/Player/Movement.cs | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.idea/.idea.SpringJam2026/.idea/workspace.xml b/.idea/.idea.SpringJam2026/.idea/workspace.xml index 7893228..2f6f46d 100644 --- a/.idea/.idea.SpringJam2026/.idea/workspace.xml +++ b/.idea/.idea.SpringJam2026/.idea/workspace.xml @@ -5,12 +5,7 @@ - - - - - diff --git a/Assets/Scripts/Player/Movement.cs b/Assets/Scripts/Player/Movement.cs index 70b639d..924590f 100644 --- a/Assets/Scripts/Player/Movement.cs +++ b/Assets/Scripts/Player/Movement.cs @@ -236,7 +236,7 @@ namespace Player foreach (var c in contacts) { var x = c.normal.x; - if (Mathf.Abs(x) > 0.1f) + if (Mathf.Abs(x) > 0.8f) { _turnDelayTimer = 0f; if (!_autoDrive)