public static bool GetSecondaryTouchUp(InputDevice device)
        {
            var value = XRInputDevicesUsage.GetSecondaryTouch(device);

            if (!value && _previousSecondaryTouch)
            {
                _previousSecondaryTouch = false;
                return(true);
            }

            return(false);
        }