AnchorTrackingState
Represents the current tracking state of a VPS anchor. The tracking state indicates how well the system is able to track an anchor's position and orientation in the current environment. This information is crucial for determining the reliability of anchor pose data. ### Overview Tracking states progress from not tracked to fully tracked, with limited tracking representing an intermediate state where tracking is possible but may be less reliable. ### Example
kotlin val update = vpsSession.getAnchorUpdate(anchorId) when (update.trackingState) { AnchorTrackingState.NOT_TRACKED -> println("Anchor is not currently being tracked") AnchorTrackingState.LIMITED -> println("Anchor tracking is limited - pose may be unreliable") AnchorTrackingState.TRACKED -> println("Anchor is fully tracked - pose is reliable") } Declaration
enum class AnchorTrackingStateProperties
| Name | Type | Summary |
|---|---|---|
| value | Int | - |