Method ToEntityArray
ToEntityArray(Allocator)
Creates a NativeArray containing the selected entities.
Declaration
public NativeArray<Entity> ToEntityArray(Allocator allocator)Parameters
| Type | Name | Description | 
|---|---|---|
| Allocator | allocator | The type of memory to allocate. | 
Returns
| Type | Description | 
|---|---|
| NativeArray<Entity> | An array containing all the entities selected by the EntityQuery. | 
Remarks
This version of the function blocks on all registered jobs that access any of the query components.
ToEntityArray(NativeArray<Entity>, Allocator)
Creates a NativeArray containing the selected entities, given an input entity list to limit the search.
Declaration
public NativeArray<Entity> ToEntityArray(NativeArray<Entity> entityArray, Allocator allocator)Parameters
| Type | Name | Description | 
|---|---|---|
| NativeArray<Entity> | entityArray | The list of entities to be considered. Only entities in this list will be considered as output. | 
| Allocator | allocator | The type of memory to allocate. | 
Returns
| Type | Description | 
|---|---|
| NativeArray<Entity> | An array containing all the entities selected by the EntityQuery. |