Search Issue Tracker
Fixed in 2021.2.X
Votes
0
Found in
Issue ID
1319358
Regression
No
NativeArray<T>.ReadOnly does not implement IEnumerable<T>
NativeArray<T> implements IEnumerable<T> allowing to use C# "foreach" syntax to iterate over it. However its read-only view (returned by calling .AsReadOnly()) does not, leading to an inconvenient inconsistency of the API.
This is especially problematic in some scenarios with DOTS.
In the attached project - and in particular in the attached screenshot -, there is a DOTS-based draft of a NBody physics system. The Job System prevents concurrent write access to the "velocityEntityChunks" array - at least in development mode - by raising an exception if I try to manipulate it directly. It forces me to call its readonly view by calling .AsReadOnly() before doing anything. For example it prevents line 39 to work via a runtime error.
My first reflex as a C# developer was to assume I could write the same "foreach" loop on the readonly view (as in line 43). However it does not compile because the type NativeArray<T>.Readonly returned by "AsReadOnly()" does not implement IEnumerable<T>. This forces me to rewrite the loop as in lines 47-50.
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Rigidbody2D.Slide API does not have the needed configuration when creating a 2D Top-Down character controller
- Opening reference for "Playables"component redirects to a missing page
- Sprite Renderer image is changed when switching Mask Interaction and changing Sprite to a shared Sprite
- An unsigned integer is not compared with an integer correctly in player when using IL2CPP backend
- Graphical artifacts are being rendered in Scenes that are loaded during run-time when GPU Resident Drawer is turned on
Resolution Note (fix version 2021.2):
Fixed in 2021.2.0a11