TrackingState

  • TrackingState is an enum that describes the tracking state of a Trackable.

  • PAUSED means ARCore has paused tracking but may resume it later.

  • STOPPED means ARCore has stopped tracking and will not resume it.

  • TRACKING means the Trackable is currently tracked and its pose is current.

public final enum TrackingState

Describes the tracking state of the Trackable.

Inherited Methods

Enum Values

PAUSED

public static final TrackingState PAUSED

ARCore has paused tracking this instance, but may resume tracking it in the future. This can happen if device tracking is lost, or if the user enters a new space, or if the Session is currently paused. When in this state the properties of the instance may be wildly inaccurate and should generally not be used.

STOPPED

public static final TrackingState STOPPED

ARCore has stopped tracking this Trackable and will never resume tracking it.

TRACKING

public static final TrackingState TRACKING

The Trackable is currently tracked and its pose is current.