CameraTools.RotableCameraBehaviour.CalculateDeltaByPinch C# (CSharp) Method

CalculateDeltaByPinch() private method

private CalculateDeltaByPinch ( ) : float
return float
        private float CalculateDeltaByPinch()
        {
            if (inputDevice.IsDoubleTouching)
                return -inputDevice.DoubleTouchRotationDeltaThisFrame;
            else
                return 0;
        }