Just wondering if there is a way to set a SCD value of all the entities in a chunk in one go once, per chunk.
thanks in advance for the help
Just wondering if there is a way to set a SCD value of all the entities in a chunk in one go once, per chunk.
thanks in advance for the help
EntityManager.SetSharedComponentData(EntityQuery, T) ?
This with the entity query
AddSharedComponentFilter(SharedComponent) should allow you to find the expected entities and set the new value I think.
Thank you, for some reason I read the EntityQuery as Entity