SpaceComponentType IOVRAnchorComponent< OVRAnchorContainer >. | Type[Get] |
ulong IOVRAnchorComponent< OVRAnchorContainer >. | Handle[Get] |
bool | IsNull[Get] Whether this object represents a valid anchor component. |
bool | IsEnabled[Get] True if this component is enabled and no change to its enabled status is pending. |
SpaceComponentType | Type[Get] |
ulong | Handle[Get] |
Guid[] | Uuids[Get] Uuids of the anchors contained by this Anchor Container. |
static readonly OVRAnchorContainer | Null[Get] A null representation of an OVRAnchorContainer. |
FromAnchor ( OVRAnchor anchor ) | |
OVRTask< bool > IOVRAnchorComponent< OVRAnchorContainer >. | |
bool | Equals ( OVRAnchorContainer other ) Compares this component for equality with other . |
override bool | Equals ( object obj ) Compares this component for equality with obj . |
override int | GetHashCode ( ) Gets a hashcode suitable for use in a Dictionary or HashSet. |
override string | ToString ( ) Gets a string representation of this component. |
OVRTask< bool > | FetchChildrenAsync ( List< OVRAnchor > anchors ) Asynchronous method that fetches anchors contained by this Anchor Container. |
static bool | Compares two components for equality. |
static bool | Compares two components for inequality. |
SpaceComponentType IOVRAnchorComponent<OVRAnchorContainer>. OVRAnchorContainer.Type |
---|
No description available.
|
ulong IOVRAnchorComponent<OVRAnchorContainer>. OVRAnchorContainer.Handle |
---|
No description available.
|
bool OVRAnchorContainer.IsNull |
---|
Whether this object represents a valid anchor component. |
bool OVRAnchorContainer.IsEnabled |
---|
True if this component is enabled and no change to its enabled status is pending. |
SpaceComponentType OVRAnchorContainer.Type |
---|
No description available.
|
ulong OVRAnchorContainer.Handle |
---|
No description available.
|
Guid [] OVRAnchorContainer.Uuids |
---|
Uuids of the anchors contained by this Anchor Container. See Also: OVRAnchor.FetchAnchorsAsync(System.Collections.Generic.IEnumerable<System.Guid>,System.Collections.Generic.IList<OVRAnchor>,OVRSpace.StorageLocation,double) Exceptions InvalidOperationException If it fails to retrieve the Uuids, which could happen if the component is not supported or enabled. |
readonly OVRAnchorContainer OVRAnchorContainer.Null |
---|
A null representation of an OVRAnchorContainer. Use this to compare with another component to determine whether it is null. |
OVRAnchorContainer IOVRAnchorComponent< OVRAnchorContainer >. OVRAnchorContainer.FromAnchor ( OVRAnchor anchor ) |
---|
No description available.
|
OVRTask< bool > IOVRAnchorComponent< OVRAnchorContainer >. OVRAnchorContainer.SetEnabledAsync ( bool enabled, double timeout ) |
---|
No description available.
|
bool OVRAnchorContainer.Equals ( OVRAnchorContainer other ) |
---|
Compares this component for equality with other . Parameters other The other component to compare with. Returns True if both components belong to the same OVRAnchor, otherwise false. |
override bool OVRAnchorContainer.Equals ( object obj ) |
---|
Compares this component for equality with obj . Parameters obj The object to compare with. Returns True if obj is an OVRAnchorContainer and Equals(OVRAnchorContainer) is true, otherwise false. |
override int OVRAnchorContainer.GetHashCode ( ) |
---|
Gets a hashcode suitable for use in a Dictionary or HashSet. Returns A hashcode for this component. |
override string OVRAnchorContainer.ToString ( ) |
---|
Gets a string representation of this component. Returns A string representation of this component. |
OVRTask< bool > OVRAnchorContainer.FetchChildrenAsync ( List< OVRAnchor > anchors ) |
---|
Asynchronous method that fetches anchors contained by this Anchor Container. Parameters anchors IList that will get cleared and populated with the requested anchors. Dispose of the returned OVRTask<bool> if you don't use the results Returns An OVRTask<bool> that will eventually let you test if the fetch was successful or not. If the result is true, then the anchors parameter has been populated with the requested anchors. Exceptions InvalidOperationException If it fails to retrieve the Uuids ArgumentNullExceptionIf parameter anchors is null |
static bool OVRAnchorContainer.operator== ( OVRAnchorContainer lhs, OVRAnchorContainer rhs ) |
---|
Compares two components for equality. Parameters lhs The component to compare with rhs . rhsThe component to compare with lhs . Returns True if both components belong to the same OVRAnchor, otherwise false. |
static bool OVRAnchorContainer.operator!= ( OVRAnchorContainer lhs, OVRAnchorContainer rhs ) |
---|
Compares two components for inequality. Parameters lhs The component to compare with rhs . rhsThe component to compare with lhs . Returns True if the components do not belong to the same OVRAnchor, otherwise false. |