Method Install
Install()
Begin installing AR software on the current device (if supported).
Declaration
public static IEnumerator Install()
Returns
Type | Description |
---|---|
IEnumerator | An |
Remarks
Installation can be asynchronous, so this is implemented as a coroutine. It is safe to call this multiple times, but you must first call CheckAvailability().
You must call CheckAvailability() before trying to start the installation, and the state must not be Unsupported or this method will throw InvalidOperationException.
Exceptions
Type | Condition |
---|---|
InvalidOperationException | Thrown if state is None or Unsupported. |