public static bool GetSecondaryButtonUp(InputDevice device)
        {
            var value = XRInputDevicesUsage.GetSecondaryButton(device);

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

            return(false);
        }