AI-generated Key Takeaways
-
Controller.BetaTrackingStatusFlagsprovides an integer bit map for tracking the status of a VR controller. -
The tracking status can indicate whether the controller is tracking normally, occluded, out of view, or unknown.
-
Constants like
NOMINAL,OCCLUDED,OUT_OF_FOV, andUNKNOWNrepresent specific tracking states. -
Each tracking state has an associated integer value that can be used for bitwise operations.
-
The class inherits methods from
java.lang.Objectfor basic object functionality.
Integer bit map for tracking status of one controller in trackingStatusFlags.
Constants
| int | NOMINAL | Indicates whether the controller is tracking in full 6DoF mode. |
| int | OCCLUDED | Indicates whether the controller is occluded. |
| int | OUT_OF_FOV | Indicates whether the controller is out of field of view of the tracking system. |
| int | UNKNOWN | Indicates whether the controller's tracking status is unknown. |
Public Constructors
Inherited Methods
Constants
public static final int NOMINAL
Indicates whether the controller is tracking in full 6DoF mode.
public static final int OCCLUDED
Indicates whether the controller is occluded. For optically tracked controllers, occlusion happens for a brief time as the user blocks the tracking system with their hand or the other controller. The position of the controller will be clamped to the last known value.
public static final int OUT_OF_FOV
Indicates whether the controller is out of field of view of the tracking system. The position of the controller is no longer accurate and should be ignored.
public static final int UNKNOWN
Indicates whether the controller's tracking status is unknown.