SW 중심대학 OSS GIT 서버 박건태, 이승준, 고기완, 이준호 새로운 배포
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

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,
}
}