InvalidOperationException: The previously scheduled job ... writes to ...NativeArray DrawFieldArray. You are trying to schedule new job ... writes to same ...NativeArray DrawFieldArray```
The jobs in question with only relevant array:
```cs
struct SetXExposedSliceJob : IJobParallelFor
{
[NativeDisableParallelForRestriction] public NativeSlice<ulong> DrawFieldArray;
}
struct SetXChunkBorderSliceJob : IJobParallelFor
{
[NativeDisableParallelForRestriction] public NativeSlice<ulong> DrawFieldArray;
}
The NativeSlices point to the same NativeArray, but I have been very careful such that the jobs do not write to the same indices. Shouldn't NativeDisableParallelForRestriction avoid this error message?