로그 제거

This commit is contained in:
Jeonghyeon Ha 2025-07-25 13:51:43 +09:00
parent d0a8d3fa7f
commit 7527f36390

View File

@ -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;