CameraTools.ZoomableCameraBehaviour.CalculateDeltaByPitch C# (CSharp) 메소드

CalculateDeltaByPitch() 개인적인 메소드

private CalculateDeltaByPitch ( ) : float
리턴 float
        private float CalculateDeltaByPitch()
        {
            if (inputDevice.IsDoubleTouching)
                return -inputDevice.NormalizedPinchDeltaThisFrame * (0.1f + currentZoomValue) * pinchSensitivity;
            else
                return 0;
        }