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.

26 lines
587 B

4 years ago
  1. using System;
  2. namespace UnityEngine.XR.ARSubsystems
  3. {
  4. /// <summary>
  5. /// Used to configure the types of planes to detect.
  6. /// </summary>
  7. [Flags]
  8. public enum PlaneDetectionMode
  9. {
  10. /// <summary>
  11. /// Plane detection is disabled.
  12. /// </summary>
  13. None = 0,
  14. /// <summary>
  15. /// Plane detection will only detect horizontal planes.
  16. /// </summary>
  17. Horizontal = 1 << 0,
  18. /// <summary>
  19. /// Plane detection will only detect vertical planes.
  20. /// </summary>
  21. Vertical = 1 << 1
  22. }
  23. }