#How to flatten N amount of native arrays?
1 messages · Page 1 of 1 (latest)
My probably unhelpful answer is that you should probably just be storing your data in a flattened array to begin with :/
As an alternative you can use UnsafeList<NativeArray<float>>
That's what I did at the end, but NativeArray<UnsafeList<float>> (the other way is not allowed)