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.

29 lines
812 B

4 years ago
  1. namespace UnityEngine.XR.ARKit
  2. {
  3. /// <summary>
  4. /// Defines the goal for the [ARCoachingOverlayView](https://developer.apple.com/documentation/arkit/arcoachingoverlayview)
  5. /// See [ARCoachingGoal](https://developer.apple.com/documentation/arkit/arcoachinggoal) for details.
  6. /// </summary>
  7. public enum ARCoachingGoal
  8. {
  9. /// <summary>
  10. /// The app requires basic world tracking.
  11. /// </summary>
  12. Tracking,
  13. /// <summary>
  14. /// The app requires a horizontal plane.
  15. /// </summary>
  16. HorizontalPlane,
  17. /// <summary>
  18. /// The app requires a vertical plane.
  19. /// </summary>
  20. VerticalPlane,
  21. /// <summary>
  22. /// The app requires a plane of any type.
  23. /// </summary>
  24. AnyPlane
  25. }
  26. }