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.

46 lines
1.5 KiB

4 years ago
  1. # AR Subsystems
  2. The purpose of this `com.unity.xr.arsubsystems` package is to provide definitions of all subsystems that enable AR functionality.
  3. Presently, this package defines the following XR subsystems:
  4. EnvironmentProbeSubsystem
  5. FaceSubsystem
  6. ImageTrackingSubsystem
  7. ObjectTrackingSubsystem
  8. ## Installing AR Subsystems
  9. This package is normally not installed by a user, but rather as a dependency defined in other packages.
  10. ## Package structure
  11. ```none
  12. <root>
  13. ├── package.json
  14. ├── README.md
  15. ├── CHANGELOG.md
  16. ├── LICENSE.md
  17. ├── QAReport.md
  18. └── Runtime
  19. ├── Unity.XR.ARSubsystems.asmdef
  20. ├── EnvironmentProbeSubsystem
  21. ├── FaceSubsystem
  22. ├── ImageTrackingSubsystem
  23. └── ObjectTrackingSubsystem
  24. ```
  25. ## Package usage
  26. This package is used as a dependency for other packages in two scenarios:
  27. 1. The other package wants to use the APIs defined in this one. Packages in this category include:
  28. [ARFoundation](https://docs.unity3d.com/Packages/com.unity.xr.arfoundation@1.0/)
  29. 1. The other package wants to extend the API and implement a provider that provides data to the Subsystems defined in this package. Packages in this category include:
  30. [ARKit XR Plugin](https://docs.unity3d.com/Packages/com.unity.xr.arkit@1.0/)
  31. [ARCore XR Plugin](https://docs.unity3d.com/Packages/com.unity.xr.arcore@1.0/)
  32. ## Documentation
  33. * [Script API](Runtime/) <update?>
  34. * [Manual](Documentation~/com.unity.xr.arsubsystems.md)