Method RunAppend
RunAppend<T>(T, NativeList<int>, int)
Executes the appending filter job, on the main thread. See IJobFilterExtensions.ScheduleAppend for more information on how appending is performed.
Declaration
public static void RunAppend<T>(this T jobData, NativeList<int> indices, int arrayLength) where T : struct, IJobFilter
Parameters
| Type | Name | Description |
|---|---|---|
| T | jobData | The job and data to schedule. |
| NativeList<int> | indices | List of indices to be filtered and appended to. |
| int | arrayLength | Length of array the filter job will append to. |
Type Parameters
| Name | Description |
|---|---|
| T | Job type |