This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ARPlusSystem/ARPlusSystem-250418/Library/PackageCache/com.unity.xr.arsubsystems@4.../Runtime/TrackingState.cs

25 lines
586 B
C#

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