This site has been permanently archived. The content on this site was last updated in 2019.
Controller.BetaTrackingStatusFlags
Stay organized with collections
Save and categorize content based on your preferences.
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. |
Inherited Methods
From class
java.lang.Object
boolean
|
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
Constants
public
static
final
int
NOMINAL
Indicates whether the controller is tracking in full 6DoF mode.
Constant Value:
2
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.
Constant Value:
4
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.
Constant Value:
8
public
static
final
int
UNKNOWN
Indicates whether the controller's tracking status is unknown.
Constant Value:
1
Public Constructors
public
Controller.BetaTrackingStatusFlags
()
All rights reserved. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-09 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-09 UTC."],[[["`Controller.BetaTrackingStatusFlags` provides 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`, and `UNKNOWN` represent 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.Object` for basic object functionality."]]],["`Controller.BetaTrackingStatusFlags` uses an integer bit map to track a controller's status. It defines four constants: `NOMINAL` (full 6DoF tracking), `OCCLUDED` (temporarily blocked), `OUT_OF_FOV` (outside the tracking system's view, position inaccurate), and `UNKNOWN` (tracking status uncertain). Each represents a specific controller tracking condition. It also has a public constructor `Controller.BetaTrackingStatusFlags()`. The status can be tracked via the `trackingStatusFlags`.\n"]]