You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the only way to filter out entities with certain components is by reading those components.
This means that even if our system is just checking if an entity has a component and not accessing its data, it can't run at the same time as a system which is writing to that component.
Solution
Add With<Component> and Without<Component> filters to the query, which don't provide data access.
The text was updated successfully, but these errors were encountered:
Wait these filters wouldn't solve the problem. They would be equivalent to Read/Write but without the data access. We need something else which allows checking if an entity has a component independently of the query ig?
Problem
Right now the only way to filter out entities with certain components is by reading those components.
This means that even if our system is just checking if an entity has a component and not accessing its data, it can't run at the same time as a system which is writing to that component.
Solution
Add
With<Component>
andWithout<Component>
filters to the query, which don't provide data access.The text was updated successfully, but these errors were encountered: