class QueryBuilder
| Name | Summary |
|---|---|
QueryBuilder | constructor() |
| Name | Summary |
|---|---|
changed | fun changed(vararg componentTypes: Int): QueryNode Creates a query that checks if an entity has specific components that have changed in the last tick. |
changedSince | fun changedSince(componentType: Int, version: <Error class: unknown class>): QueryNode This is an advanced query and requires knowledge of the ordering of systems. It checks changes that occur within a tick and is especially useful if you want to remove one tick lag. At the same time, it introduces more complexity to manage, so please use it with caution. |
childrenOf | |
has | fun has(vararg componentTypes: Int): QueryNode Creates a query that checks if an entity has specific components. |