Guid? | SingleUuid[Get] A UUID of an existing anchor to fetch. |
IEnumerable< Guid > | Uuids[Get] A collection of UUIDS to fetch. |
Type | SingleComponentType[Get] Fetch anchors that support a given component type. |
IEnumerable< Type > | ComponentTypes[Get] Fetch anchors that support a given set of component types. |
Guid? OVRAnchor.FetchOptions.SingleUuid |
---|
A UUID of an existing anchor to fetch. Set this to fetch a single anchor with by UUID. If you want to fetch multiple anchors by UUID, use Uuids. |
IEnumerable<Guid> OVRAnchor.FetchOptions.Uuids |
---|
A collection of UUIDS to fetch. If you want to retrieve only a single UUID, you can SingleUuid to avoid having to create a temporary container of length one. NOTE: Only the first 50 anchors are processed by OVRAnchor.FetchAnchorsAsync(System.Collections.Generic.List<OVRAnchor>,OVRAnchor.FetchOptions,System.Action<System.Collections.Generic.List<OVRAnchor>,int>) |
Type OVRAnchor.FetchOptions.SingleComponentType |
---|
Fetch anchors that support a given component type. Each anchor supports one or more anchor types (types that implemented IOVRAnchorComponent<T>). If not null, SingleComponentType must be a type that implements IOVRAnchorComponent<T>, e.g., OVRBounded2D or OVRRoomLayout. If you have multiple component types, use ComponentTypes instead. |
IEnumerable<Type> OVRAnchor.FetchOptions.ComponentTypes |
---|
Fetch anchors that support a given set of component types. Each anchor supports one or more anchor types (types that implemented IOVRAnchorComponent<T>). If not null, ComponentTypes must be a collection of types that implement IOVRAnchorComponent<T>, e.g., OVRBounded2D or OVRRoomLayout. When multiple components are specified, all anchors that support any of those types are returned, i.e., the component types are OR'd together to determine whether an anchor matches. If you only have a single component type, you can use SingleComponentType to avoid having to create a temporary container of length one. |