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.

113 lines
4.2 KiB

4 years ago
  1. namespace UnityEngine.XR.ARFoundation
  2. {
  3. /// <summary>
  4. /// The update order for <c>MonoBehaviour</c>s in ARFoundation.
  5. /// </summary>
  6. public static class ARUpdateOrder
  7. {
  8. /// <summary>
  9. /// The <see cref="ARSession"/>'s update order. Should come first.
  10. /// </summary>
  11. public const int k_Session = int.MinValue;
  12. /// <summary>
  13. /// The <see cref="ARPlaneManager"/>'s update order. Should come after
  14. /// the <see cref="ARSession"/>.
  15. /// </summary>
  16. public const int k_PlaneManager = k_Session + 1;
  17. /// <summary>
  18. /// The <see cref="ARPlane"/>'s update order. Should come after the
  19. /// <see cref="ARPlaneManager"/>.
  20. /// </summary>
  21. public const int k_Plane = k_PlaneManager + 1;
  22. /// <summary>
  23. /// The <see cref="ARPointCloudManager"/>'s update order. Should come
  24. /// after the <see cref="ARSession"/>.
  25. /// </summary>
  26. public const int k_PointCloudManager = k_Session + 1;
  27. /// <summary>
  28. /// The <see cref="ARPointCloud"/>'s update order. Should come after
  29. /// the <see cref="ARPointCloudManager"/>.
  30. /// </summary>
  31. public const int k_PointCloud = k_PointCloudManager + 1;
  32. /// <summary>
  33. /// The <see cref="ARAnchorManager"/>'s update order.
  34. /// Should come after the <see cref="ARSession"/>.
  35. /// </summary>
  36. public const int k_AnchorManager = k_Session + 1;
  37. /// <summary>
  38. /// The <see cref="ARAnchorManager"/>'s update order.
  39. /// Should come after the <see cref="ARAnchorManager"/>.
  40. /// </summary>
  41. public const int k_Anchor = k_AnchorManager + 1;
  42. /// <summary>
  43. /// The <see cref="ARInputManager"/>'s update order. Should come after
  44. /// the <see cref="ARSession"/>.
  45. /// </summary>
  46. public const int k_InputManager = k_Session + 1;
  47. /// <summary>
  48. /// The <see cref="ARCameraManager"/>'s update order. Should come after
  49. /// the <see cref="ARSession"/>.
  50. /// </summary>
  51. public const int k_CameraManager = k_Session + 1;
  52. /// <summary>
  53. /// The <see cref="ARFaceManager"/>'s update order. Should come after
  54. /// the <see cref="ARSession"/>.
  55. /// </summary>
  56. public const int k_FaceManager = k_Session + 1;
  57. /// <summary>
  58. /// The <see cref="ARFace"/>'s update order. Should come after
  59. /// the <see cref="ARFaceManager"/>.
  60. /// </summary>
  61. public const int k_Face = k_FaceManager + 1;
  62. /// <summary>
  63. /// The <see cref="ARTrackedImageManager"/>'s update order.
  64. /// Should come after the <see cref="ARSession"/>.
  65. /// </summary>
  66. public const int k_TrackedImageManager = k_Session + 1;
  67. /// <summary>
  68. /// The <see cref="ARTrackedImage"/>'s update order.
  69. /// Should come after the <see cref="ARTrackedImageManager"/>.
  70. /// </summary>
  71. public const int k_TrackedImage = k_TrackedImageManager + 1;
  72. /// <summary>
  73. /// The <see cref="AREnvironmentProbeManager"/>'s update order. Should come after
  74. /// the <see cref="ARSession"/>.
  75. /// </summary>
  76. public const int k_EnvironmentProbeManager = k_Session + 1;
  77. /// <summary>
  78. /// The <see cref="AREnvironmentProbe"/>'s update order. Should come after
  79. /// the <see cref="AREnvironmentProbeManager"/>.
  80. /// </summary>
  81. public const int k_EnvironmentProbe = k_EnvironmentProbeManager + 1;
  82. /// <summary>
  83. /// The <see cref="ARMeshManager"/>'s update order. Should come after
  84. /// the <see cref="ARSession"/>.
  85. /// </summary>
  86. public const int k_MeshManager = k_Session + 1;
  87. /// <summary>
  88. /// The <see cref="ARParticipantManager"/>'s update order. Should come after the <see cref="ARSession"/>.
  89. /// </summary>
  90. public const int k_ParticipantManager = k_Session + 1;
  91. /// <summary>
  92. /// The <see cref="ARParticipant"/>'s update order. Should come after the <see cref="ARParticipantManager"/>.
  93. /// </summary>
  94. public const int k_Participant = k_ParticipantManager + 1;
  95. }
  96. }