What happens with dependencies with both?
Can somebody summarize the differences since the documentation says nothing at all?
https://docs.unity3d.com/Packages/com.unity.entities@1.2/manual/components-singleton.html
So my singleton component has NativeList inside of it, so I guess it is recommended to use the RW version.
GetSingleton is supposed to return a read only version of it. Does it consider write dependencies by itself? Or since it's native containers it doesn't?
GetSingletonRW returns a reference to the data. So we use that if we want to access the native containers otherwise, GetSingleton is enough?
Do the dependencies work with the reference ? Only if they are passed to Jobs I guess??