Just spent 8 hours upgrading personal libraries and work project (still in progress) and going to publicly document issues here to save you all the effort
1. EntityQuery.GetSingleton<T> is busted
Sometimes returns wrong value (not always not sure what repo is.)
To
Compilation of Issues with 0.50
1. EntityQuery.GetSingleton<T> is busted
Sometimes returns wrong value (not always not sure what repo is.)
Code (CSharp):
- _query = GetEntityQuery(ComponentType.ReadOnly<LocalPlayer>(), ComponentType.ReadOnly<Translation>());
- var translation = _query.GetSingleton<Translation>();
Code (CSharp):
- var translation =...