/// <summary>
        /// Returns true if the trigger value is lower than threstholdValue
        /// </summary>
        /// <param name="device"></param>
        /// <param name="threstholdValue"></param>
        /// <returns></returns>
        public static bool GetGripButtonUp(InputDevice device, float threstholdValue)
        {
            var value = XRInputDevicesUsage.GetGrip(device);

            if (value <= threstholdValue && _previousGripLaunched)
            {
                _previousGripLaunched = false;
                return(true);
            }

            return(false);
        }