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

4 years ago
  1. namespace UnityEngine.XR.ARSubsystems
  2. {
  3. /// <summary>
  4. /// Represents the reason tracking was lost.
  5. /// </summary>
  6. public enum NotTrackingReason
  7. {
  8. /// <summary>
  9. /// Tracking is working normally.
  10. /// </summary>
  11. None,
  12. /// <summary>
  13. /// Tracking is being initialized.
  14. /// </summary>
  15. Initializing,
  16. /// <summary>
  17. /// Tracking is resuming after an interruption.
  18. /// </summary>
  19. Relocalizing,
  20. /// <summary>
  21. /// Tracking is lost due to poor lighting conditions.
  22. /// </summary>
  23. InsufficientLight,
  24. /// <summary>
  25. /// Tracking is lost due to insufficient visual features.
  26. /// </summary>
  27. InsufficientFeatures,
  28. /// <summary>
  29. /// Tracking is lost due to excessive motion.
  30. /// </summary>
  31. ExcessiveMotion,
  32. /// <summary>
  33. /// Tracking lost reason is not supported.
  34. /// </summary>
  35. Unsupported,
  36. }
  37. }