Enum XrFutureStateEXT
Represents the possible states of a future.
Namespace: UnityEngine.XR.OpenXR.NativeTypes
Assembly: Unity.XR.OpenXR.dll
Syntax
public enum XrFutureStateEXT
Fields
Name | Description |
---|---|
Pending | The state of a future that is waiting for the async operation to conclude. This is typically the initial state of a future returned from an async function. |
Ready | The state of a future when the result of the async operation is ready. You can retrieve the result by calling the associated completion function. |