You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.0 KiB
45 lines
1.0 KiB
|
|
namespace UnityEngine.XR.ARSubsystems
|
|
{
|
|
/// <summary>
|
|
/// Represents the reason tracking was lost.
|
|
/// </summary>
|
|
public enum NotTrackingReason
|
|
{
|
|
/// <summary>
|
|
/// Tracking is working normally.
|
|
/// </summary>
|
|
None,
|
|
|
|
/// <summary>
|
|
/// Tracking is being initialized.
|
|
/// </summary>
|
|
Initializing,
|
|
|
|
/// <summary>
|
|
/// Tracking is resuming after an interruption.
|
|
/// </summary>
|
|
Relocalizing,
|
|
|
|
/// <summary>
|
|
/// Tracking is lost due to poor lighting conditions.
|
|
/// </summary>
|
|
InsufficientLight,
|
|
|
|
/// <summary>
|
|
/// Tracking is lost due to insufficient visual features.
|
|
/// </summary>
|
|
InsufficientFeatures,
|
|
|
|
/// <summary>
|
|
/// Tracking is lost due to excessive motion.
|
|
/// </summary>
|
|
ExcessiveMotion,
|
|
|
|
/// <summary>
|
|
/// Tracking lost reason is not supported.
|
|
/// </summary>
|
|
Unsupported,
|
|
}
|
|
}
|
|
|