Method RunWithoutJobs
RunWithoutJobs<T>(ref T, ref ArchetypeChunkIterator)
Runs the job using an ArchetypeChunkIterator instead of the jobs API.
Declaration
public static void RunWithoutJobs<T>(this ref T jobData, ref ArchetypeChunkIterator chunkIterator)
where T : struct, IJobChunk
Parameters
| Type | Name | Description |
|---|---|---|
| T | jobData | The job to execute. |
| ArchetypeChunkIterator | chunkIterator | The ArchetypeChunkIterator of the EntityQuery to run over. |
Type Parameters
| Name | Description |
|---|---|
| T | The specific IJobChunk implementation type. |