static const int | MaxSupported[Get] The maximum number of uuids that may be present in the Uuids collection. |
StorageLocation[Get] The storage location from which to query spatial anchors. | |
int | MaxAnchorCount[Get] (Obsolete) The maximum number of anchors to query. |
double | Timeout[Get] The timeout, in seconds, for the query operation. |
IReadOnlyList< Guid > | Uuids[Get] The set of spatial anchors to query, identified by their UUIDs. |
OVRSpatialAnchor.LoadOptions options = new OVRSpatialAnchor.LoadOptions{Timeout = 0,Uuids = savedAnchorUuids};
const int OVRSpatialAnchor.LoadOptions.MaxSupported |
---|
The maximum number of uuids that may be present in the Uuids collection. |
OVRSpace.StorageLocation OVRSpatialAnchor.LoadOptions.StorageLocation |
---|
The storage location from which to query spatial anchors. |
int OVRSpatialAnchor.LoadOptions.MaxAnchorCount |
---|
(Obsolete) The maximum number of anchors to query. In prior SDK versions, it was mandatory to set this property to receive any results. However, this property is now obsolete. If MaxAnchorCount is zero, i.e., the default initialized value, it will automatically be set to the count of Uuids. If non-zero, the number of anchors in the result will be limited to MaxAnchorCount, preserving the previous behavior. |
double OVRSpatialAnchor.LoadOptions.Timeout |
---|
The timeout, in seconds, for the query operation. A value of zero indicates no timeout. |
IReadOnlyList<Guid> OVRSpatialAnchor.LoadOptions.Uuids |
---|
The set of spatial anchors to query, identified by their UUIDs. The UUIDs are copied by the OVRSpatialAnchor.LoadUnboundAnchorsAsync method and no longer referenced internally afterwards. You must supply a list of UUIDs. OVRSpatialAnchor.LoadUnboundAnchorsAsync will throw if this property is null. Exceptions System.ArgumentException Thrown if Uuids contains more than MaxSupported elements. |