From 1d21ef8e22a25c3b9ce5f757c3d16c56488eb0e6 Mon Sep 17 00:00:00 2001 From: minenice55 Date: Mon, 15 Jan 2024 12:31:12 -0500 Subject: [PATCH] oops debug print --- Assets/Scripts/Games/MeatGrinder/MeatGrinder.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Assets/Scripts/Games/MeatGrinder/MeatGrinder.cs b/Assets/Scripts/Games/MeatGrinder/MeatGrinder.cs index 2392ed03..6157738f 100644 --- a/Assets/Scripts/Games/MeatGrinder/MeatGrinder.cs +++ b/Assets/Scripts/Games/MeatGrinder/MeatGrinder.cs @@ -269,7 +269,6 @@ namespace HeavenStudio.Games float normalizedBeat = cond.GetPositionFromBeat(cartEase.beat, cartEase.length); Util.EasingFunction.Function func = Util.EasingFunction.GetEasingFunction(cartEase.ease); float newPos = func(0f, 1f, normalizedBeat); - Debug.Log($"{normalizedBeat}, {newPos}"); CartGuyParentAnim.DoNormalizedAnimation($"Move{cartDir}", newPos); if (normalizedBeat >= 1) cartEase.length = 0; }