namespace UnityEngine.XR.ARSubsystems { /// /// Represents pose tracking quality. /// Can apply to a device or trackables it is tracking in the environment. /// public enum TrackingState { /// /// Not tracking. /// None, /// /// Some tracking information is available, but it is limited or of poor quality. /// Limited, /// /// Tracking is working normally. /// Tracking, } }