From 0d5f9f4803e94d354db5aafcf668181079edc974 Mon Sep 17 00:00:00 2001 From: BOT Alex <44818698+MagicBOTAlex@users.noreply.github.com> Date: Sun, 21 Apr 2024 09:58:04 +0200 Subject: [PATCH] Deleted debug --- Assets/Scripts/Manager/WaypointPath.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Assets/Scripts/Manager/WaypointPath.cs b/Assets/Scripts/Manager/WaypointPath.cs index 8b12b04..474e8fb 100644 --- a/Assets/Scripts/Manager/WaypointPath.cs +++ b/Assets/Scripts/Manager/WaypointPath.cs @@ -53,7 +53,6 @@ public class WaypointPath : MonoBehaviour float minDist = Math.Min(dist, data.MoveSpeed * Time.deltaTime); data.Entity.position += normTargetDir * minDist; - Debug.Log(data.FeetOffset); data.Entity.position = data.Entity.position.With(y: data.FeetOffset); } }