[ECS] Is it possible to put 9 arguments into a .ForEach()?

I need to access 7 components + Entity and nativeThreadIndex

Is there a way to do this? Or do I need to not go .ScheduleParallel() so I can free up an extra argument and remove nativeThreadIndex

You can use IJobChunk for that requirements.

1 Like

Custom delegates Using Entities.ForEach | Entities | 0.16.0-preview.21.

1 Like

Can’t believe I missed that, thank you @snacktime !