SpaceComponentType IOVRAnchorComponent< OVRSharable >. | Type[Get] |
ulong IOVRAnchorComponent< OVRSharable >. | 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] |
static readonly OVRSharable | Null[Get] A null representation of an OVRSharable. |
FromAnchor ( OVRAnchor anchor ) | |
OVRTask< bool > | Sets the enabled status of this component. |
OVRTask< bool > | (Obsolete) Sets the enabled status of this component if it differs from the current enabled state. |
bool | Equals ( OVRSharable 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. |
static bool | Compares two components for equality. |
static bool | Compares two components for inequality. |
SpaceComponentType IOVRAnchorComponent<OVRSharable>. OVRSharable.Type |
---|
No description available.
|
ulong IOVRAnchorComponent<OVRSharable>. OVRSharable.Handle |
---|
No description available.
|
bool OVRSharable.IsNull |
---|
Whether this object represents a valid anchor component. |
bool OVRSharable.IsEnabled |
---|
True if this component is enabled and no change to its enabled status is pending. |
SpaceComponentType OVRSharable.Type |
---|
No description available.
|
ulong OVRSharable.Handle |
---|
No description available.
|
readonly OVRSharable OVRSharable.Null |
---|
A null representation of an OVRSharable. Use this to compare with another component to determine whether it is null. |
OVRSharable IOVRAnchorComponent< OVRSharable >. OVRSharable.FromAnchor ( OVRAnchor anchor ) |
---|
No description available.
|
OVRTask< bool > OVRSharable.SetEnabledAsync ( bool enabled, double timeout ) |
---|
Sets the enabled status of this component. A component must be enabled in order to access its data or do enable its functionality. This method is asynchronous. Use the returned task to track the completion of this operation. The task's value indicates whether the operation was successful. If the current enabled state matches enabled , then the returned task completes immediately with a True result. If there is already a pending change to the enabled state, the new request is queued. Parameters enabled The desired state of the component. timeoutThe timeout, in seconds, for the operation. Use zero to indicate an infinite timeout. Returns Returns an OVRTask<T> whose result indicates the result of the operation. |
OVRTask< bool > OVRSharable.SetEnabledSafeAsync ( bool enabled, double timeout ) |
---|
(Obsolete) Sets the enabled status of this component if it differs from the current enabled state. This method is obsolete. Use SetEnabledAsync instead. Parameters enabled The desired state of the component. timeoutThe timeout, in seconds, for the operation. Use zero to indicate an infinite timeout. Returns Returns an OVRTask<T> whose result indicates the result of the operation. |
bool OVRSharable.Equals ( OVRSharable 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 OVRSharable.Equals ( object obj ) |
---|
Compares this component for equality with obj . Parameters obj The object to compare with. Returns True if obj is an OVRSharable and Equals(OVRSharable) is true, otherwise false. |
override int OVRSharable.GetHashCode ( ) |
---|
Gets a hashcode suitable for use in a Dictionary or HashSet. Returns A hashcode for this component. |
override string OVRSharable.ToString ( ) |
---|
Gets a string representation of this component. Returns A string representation of this component. |
static bool OVRSharable.operator== ( OVRSharable lhs, OVRSharable 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 OVRSharable.operator!= ( OVRSharable lhs, OVRSharable 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. |