#personally I can t see myself using

1 messages · Page 1 of 1 (latest)

slim cloak
#

Interesting, howcome? :3

sinful marlin
#

i have about 2% usage of Entites.ForEach as is, i nearly write all my jobs by hand

#

I'm heavily dependent on change filters and a bunch of other chunk level optimization stuff

#

So I rarely utilize any of the code gen job types

#

I think I'm one of a few people who really doesn't mind the boilerplate

tender arrow
#

make that 2! 😄 at least the SystemApi.Query is better than Entities.ForEach

wheat copper
#

How does the Query API handle stuff like structural changes?

#

I'm guessing it's fine since it's all main thread anyways?

#

e.g. calling EntityManager.Destroy inside a Query

slim cloak
#

Interestingly you can do Additive structural changes inside Query. (So CreateEntity and Instantiate)

wheat copper
#

What happens if you call Destroy?

slim cloak
#

runtime error saying that you did a structural change and its a nogo

wheat copper