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); } }