Struct ARAnchorsChangedEventArgs
Event arguments for the anchorsChanged event.
Implements
Inherited Members
Namespace: UnityEngine.XR.ARFoundation
Assembly: solution.dll
Syntax
public struct ARAnchorsChangedEventArgs : IEquatable<ARAnchorsChangedEventArgs>
Constructors
Name | Description |
---|---|
ARAnchorsChangedEventArgs(List<ARAnchor>, List<ARAnchor>, List<ARAnchor>) | Constructs an ARAnchorsChangedEventArgs. |
Properties
Name | Description |
---|---|
added | The list of ARAnchors added since the last event. |
removed | The list of ARAnchors removed since the last event. At the time the event is invoked, the ARAnchors in this list still exist. They are destroyed immediately afterward. |
updated | The list of ARAnchors udpated since the last event. |
Methods
Name | Description |
---|---|
Equals(object) | Tests for equality. |
Equals(ARAnchorsChangedEventArgs) | Tests for equality. |
GetHashCode() | Generates a hash suitable for use with containers like |
ToString() | Generates a string representation of this ARAnchorsChangedEventArgs. |
Operators
Name | Description |
---|---|
operator ==(ARAnchorsChangedEventArgs, ARAnchorsChangedEventArgs) | Tests for equality. Same as Equals(ARAnchorsChangedEventArgs). |
operator !=(ARAnchorsChangedEventArgs, ARAnchorsChangedEventArgs) | Tests for inequality. Same as |