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.

23 lines
787 B

4 years ago
  1. namespace UnityEngine.XR.ARSubsystems
  2. {
  3. /// <summary>
  4. /// An interface for a reference image library. This is a set of reference images
  5. /// to search for in the physical environment.
  6. /// </summary>
  7. /// <seealso cref="RuntimeReferenceImageLibrary"/>
  8. /// <seealso cref="MutableRuntimeReferenceImageLibrary"/>
  9. /// <seealso cref="XRReferenceImageLibrary"/>
  10. /// <seealso cref="XRReferenceImage"/>
  11. public interface IReferenceImageLibrary
  12. {
  13. /// <summary>
  14. /// Get the number of reference images in the library.
  15. /// </summary>
  16. int count { get; }
  17. /// <summary>
  18. /// Get the <see cref="XRReferenceImage"/> image at <c>index</c>.
  19. /// </summary>
  20. XRReferenceImage this[int index] { get; }
  21. }
  22. }