Jump to content

How to track when a user takes off their helmet on HTC Vive Focus Plus?


Recommended Posts

Hello, I am using the Unity XR SDK in my project. I need to implement the exit to the main menu when the user takes off the helmet, before the helmet goes into standby mode. I tried to track the moment of withdrawal using the XR API, here is an example implementation:

InputDevice headDevice = InputDevices.GetDeviceAtXRNode (XRNode.Head);
           if (headDevice.isValid == false) return;
         bool userPresent = false;
         boolean presenceFeatureSupported = headDevice.TryGetFeatureValue (CommonUsages.userPresence, out userPresent);

but it turned out that this option is not supported by my helmet model (HTC Vive Focus Plus). Are there any other ways to track the moment the user's helmet is removed? @Tony PH Lin

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...