Is there any way to easily create an EntityQuery for existing IJobEntity with many small components? Similar to the old withstoreentityqueryinfield. Right now I’m forced to specify every single required component which would be a tedious refactor. The use case is to start having my IJobEntity filter for a ISharedComponentData value of 0, 1, 2, etc for different scheduling
#IJobEntity equivalent for withstoreentityqueryinfield
1 messages · Page 1 of 1 (latest)
no, no such thing. BUt you can pass existing query as parameter for schedule
so you can schedule 1, change filter, schedule 2 ...
Ah ok. Can we also pass in an empty EntityQuery? Does IJobEntity do any magic to automatically populate the EntityQuery?
no
query you pass must include all components used by IJE
or else it'll throw