Page Summary
-
Properties.TrackingStatusFlagprovides constants representing the tracking status of a VR tracker. -
These flags indicate whether the tracker has 6 degrees of freedom, is initializing, or is in an invalid state.
-
The constants
HAS_6DOF,INITIALIZING, andINVALIDcan be used to check the tracker's status.
public static final class
Properties.TrackingStatusFlag
Flags for TRACKING_STATUS.
Constants
| long | HAS_6DOF | The tracker pose is derived from 6DoF sensors and has a translational component. |
| long | INITIALIZING | The tracker is still initializing, so the pose may not be accurate. |
| long | INVALID | The tracker is in an invalid (potentially paused) state, or no valid tracker exists. |
Inherited Methods
Constants
public static final long HAS_6DOF
The tracker pose is derived from 6DoF sensors and has a translational component.
Constant Value:
4
public static final long INITIALIZING
The tracker is still initializing, so the pose may not be accurate.
Constant Value:
2
public static final long INVALID
The tracker is in an invalid (potentially paused) state, or no valid tracker exists.
Constant Value:
1