namespace UnityEngine.XR.ARSubsystems { /// /// An enum used to determine the current status of the software install. /// /// /// Some devices might support AR but require a software update. Some platforms allow /// prompting a user to install the required software. This enum is used to indicate /// the result of an installation request. /// public enum SessionInstallationStatus { /// /// Default value. The installation status is not known. /// None = 0, /// /// The installation was successful. /// Success, /// /// The installation was not successful because the user declined the installation. /// ErrorUserDeclined, /// /// The installation was not successful because the device is not compatible. /// ErrorDeviceNotCompatible, /// /// The installation was not successful because installation is not supported. /// ErrorInstallNotSupported, /// /// An unknown error occurred during installation. /// Error } }