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
// only retrieve entities that have a position x and y bigger than 1000
let entities = runQuery([Has(Position), Filter(Position, ({x, y}) => x > 1000, y > 1000)]);
The text was updated successfully, but these errors were encountered:
Following @alvrs comment here: https://discord.com/channels/865335009915961364/1029021716367806514/1144301124447371344
Goal would be to create a "Filter" query fragment that takes a component as first parameter and a filter function as second parameter.
Steps to make this would be:
Example:
The text was updated successfully, but these errors were encountered: