Method GetAllUniqueSharedComponentData
GetAllUniqueSharedComponentData<T>(List<T>)
Obsolete. Use GetAllUniqueSharedComponentsManaged<T>(List<T>) instead.
Declaration
[Obsolete("Use GetAllUniqueSharedComponentsManaged<T> (UnityUpgradable) -> GetAllUniqueSharedComponentsManaged<T>(*)", true)]
public void GetAllUniqueSharedComponentData<T>(List<T> sharedComponentValues) where T : struct, ISharedComponentData
Parameters
| Type | Name | Description |
|---|---|---|
| List<T> | sharedComponentValues | A List<T> object to receive the unique instances of the shared component of type T. |
Type Parameters
| Name | Description |
|---|---|
| T | The type of shared component. |
GetAllUniqueSharedComponentData<T>(List<T>, List<int>)
Obsolete. Use GetAllUniqueSharedComponentsManaged<T>(List<T>, List<int>) instead.
Declaration
[Obsolete("Use GetAllUniqueSharedComponentsManaged<T> (UnityUpgradable) -> GetAllUniqueSharedComponentsManaged<T>(*)", true)]
public void GetAllUniqueSharedComponentData<T>(List<T> sharedComponentValues, List<int> sharedComponentIndices) where T : struct, ISharedComponentData
Parameters
| Type | Name | Description |
|---|---|---|
| List<T> | sharedComponentValues | A List<T> object to receive the unique instances of the shared component of type T. |
| List<int> | sharedComponentIndices | A List<int> object to receive the unique instances of the shared components' indices. |
Type Parameters
| Name | Description |
|---|---|
| T | The type of shared component. |
GetAllUniqueSharedComponentData<T>(List<T>, List<int>, List<int>)
Obsolete. Use GetAllUniqueSharedComponentsManaged<T>(List<T>, List<int>, List<int>) instead.
Declaration
[Obsolete("Use GetAllUniqueSharedComponentsManaged<T> (UnityUpgradable) -> GetAllUniqueSharedComponentsManaged<T>(*)", true)]
public void GetAllUniqueSharedComponentData<T>(List<T> sharedComponentValues, List<int> sharedComponentIndices, List<int> sharedComponentVersions) where T : struct, ISharedComponentData
Parameters
| Type | Name | Description |
|---|---|---|
| List<T> | sharedComponentValues | A List<T> object to receive the unique instances of the shared component of type T. |
| List<int> | sharedComponentIndices | A List<int> object to receive the unique instances of the shared components' indices. |
| List<int> | sharedComponentVersions | A List<int> object to receive the unique instances of the shared components' versions. |
Type Parameters
| Name | Description |
|---|---|
| T | The type of shared component. |