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.

43 lines
1.3 KiB

4 years ago
  1. namespace UnityEngine.XR.ARSubsystems
  2. {
  3. /// <summary>
  4. /// An enum used to determine that current status of the software install.
  5. /// </summary>
  6. /// <remarks>
  7. /// Some devices may support AR but require a software update. Some platforms allow
  8. /// prompting a user to install the required software. This enum is used to indicate
  9. /// the result of an installation request.
  10. /// </remarks>
  11. public enum SessionInstallationStatus
  12. {
  13. /// <summary>
  14. /// Default value. The installation status is not known.
  15. /// </summary>
  16. None = 0,
  17. /// <summary>
  18. /// The installation was successful.
  19. /// </summary>
  20. Success,
  21. /// <summary>
  22. /// The installation was not successful because the user declined the installation.
  23. /// </summary>
  24. ErrorUserDeclined,
  25. /// <summary>
  26. /// The installation was not successful because the device is not compatible.
  27. /// </summary>
  28. ErrorDeviceNotCompatible,
  29. /// <summary>
  30. /// The installation was not successful because installation is not supported.
  31. /// </summary>
  32. ErrorInstallNotSupported,
  33. /// <summary>
  34. /// An unknown error occurred during installation.
  35. /// </summary>
  36. Error
  37. }
  38. }