From 7527f36390841c872256336558135c9d89ea0c66 Mon Sep 17 00:00:00 2001 From: Jeonghyeon Ha Date: Fri, 25 Jul 2025 13:51:43 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A1=9C=EA=B7=B8=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/0_Voyage/_Scripts/Ship/VoyagePlayerShipMovementVisual.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Assets/0_Voyage/_Scripts/Ship/VoyagePlayerShipMovementVisual.cs b/Assets/0_Voyage/_Scripts/Ship/VoyagePlayerShipMovementVisual.cs index feb632a43..69d43625f 100644 --- a/Assets/0_Voyage/_Scripts/Ship/VoyagePlayerShipMovementVisual.cs +++ b/Assets/0_Voyage/_Scripts/Ship/VoyagePlayerShipMovementVisual.cs @@ -153,7 +153,6 @@ public class VoyagePlayerShipMovementVisual : MonoBehaviour float deltaRotation = Mathf.DeltaAngle(lastRotationY, transform.eulerAngles.y); currentAngularVelocity = deltaRotation / Time.fixedDeltaTime; float desiredYaw = currentAngularVelocity / angularVelocityToYaw; - Debug.Log(desiredYaw); // get smoothed yaw desiredWorldYaw = Mathf.SmoothDampAngle(desiredWorldYaw, desiredYaw, ref rotationVelocity, yawRotationSmoothTime); // desiredWorldYaw = desiredYaw;