Struct ARMeshInfosChangedEventArgs
Event arguments for the meshInfosChanged event.
Inherited Members
Namespace: UnityEngine.XR.ARFoundation
Assembly: Unity.XR.ARFoundation.dll
Syntax
public readonly struct ARMeshInfosChangedEventArgs
Constructors
ARMeshInfosChangedEventArgs(ReadOnlyList<MeshUpdateInfo>, ReadOnlyList<MeshUpdateInfo>, ReadOnlyList<MeshUpdateInfo>)
Constructs an ARMeshInfosChangedEventArgs.
Declaration
public ARMeshInfosChangedEventArgs(ReadOnlyList<MeshUpdateInfo> added, ReadOnlyList<MeshUpdateInfo> updated, ReadOnlyList<MeshUpdateInfo> removed)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlyList<MeshUpdateInfo> | added | The list of |
ReadOnlyList<MeshUpdateInfo> | updated | The list of |
ReadOnlyList<MeshUpdateInfo> | removed | The list of |
Properties
added
The list of MeshUpdateInfo
s added since the last event.
Declaration
public ReadOnlyList<MeshUpdateInfo> added { get; }
Property Value
Type | Description |
---|---|
ReadOnlyList<MeshUpdateInfo> |
removed
The list of MeshUpdateInfo
s removed since the last event.
Declaration
public ReadOnlyList<MeshUpdateInfo> removed { get; }
Property Value
Type | Description |
---|---|
ReadOnlyList<MeshUpdateInfo> |
updated
The list of MeshUpdateInfo
s updated since the last event.
Declaration
public ReadOnlyList<MeshUpdateInfo> updated { get; }
Property Value
Type | Description |
---|---|
ReadOnlyList<MeshUpdateInfo> |