Class LambdaJobQueryConstructionMethods
Extension methods implementing the fluent API for Entities.ForEach
.
Namespace: Unity.Entities
Assembly: Unity.Entities.dll
Syntax
public static class LambdaJobQueryConstructionMethods
Methods
Name | Description |
---|---|
Add |
Adds a chunk component to each of the chunks identified by the query you have defined using WithAny/WithAll/WithNone and sets the component values. |
Add |
Adds a component to a set of entities selected by the query you have defined using WithAny/WithAll/WithNone |
Add |
Adds components to a set of entities selected by the query you have defined using WithAny/WithAll/WithNone |
Add |
Adds a component to a set of entities selected by the query you have defined using WithAny/WithAll/WithNone and sets the component of each entity in the query to the value in the component array. |
Add |
Adds a component to a set of entities selected by the query you have defined using WithAny/WithAll/WithNone |
Add |
Sets the shared component of all entities in the query you have defined using WithAny/WithAll/WithNone |
Destroy |
Destroys the set of entities defined by the query you have defined using WithAny/WithAll/WithNone. |
Remove |
Removes a component from a set of entities selected by the query you have defined using WithAny/WithAll/WithNone. |
Remove |
Removes a component from a set of entities selected by the query you have defined using WithAny/WithAll/WithNone |
Remove |
Removes a set of components from a set of entities selected by the query you have defined using WithAny/WithAll/WithNone |
Remove |
Removes a component from a set of entities selected by the query you have defined using WithAny/WithAll/WithNone |
Set |
Sets the shared component of all entities in the query. |
To |
Capture the query you have defined using WithAny/WithAll/WithNone |
With |
Add qualification to the generated query that it should only return entities that do not have the specified component type. |
With |
Add qualification to the generated query that it should only return entities that do not have the specified component types. |
With |
Add qualification to the generated query that it should only return entities that have all of the specified component type, and only if the component is enabled on the entity. |
With |
Add qualification to the generated query that it should only return entities that have all of the specified component type, and only if the component is enabled on the entity. |
With |
Add qualification to the generated query that it should only return entities that have all of the specified component type, and only if the component is enabled on the entity. |
With |
Add qualification to the generated query that it should only return entities that have any of the specified component type. |
With |
Add qualification to the generated query that it should only return entities that have any of the specified component types. |
With |
Add qualification to the generated query that it should only return entities that have any of the specified component type. |
With |
Add qualification to the generated query that it should only return entities that have chunks where the specified component changed since the last time the system ran. |
With |
Add qualification to the generated query that it should only return entities that have chunks where the specified component changed since the last time the system ran. |
With |
Specify an EntityCommandBufferSystem to play back entity commands. |
With |
Add qualification to the generated query that it should only return entities that have the specified DISABLED component type. |
With |
Add qualification to the generated query that it should only return entities that have the specified DISABLED component types. |
With |
Add EntityQueryOptions to the generated query. |
With |
Play back entity commands immediately. |
With |
Add qualification to the generated query that it should only return entities that either 1) do not have the specified component type OR 2) have the specified DISABLED component type. |
With |
Add qualification to the generated query that it should only return entities that either 1) do not have the specified component types OR 2) have the specified DISABLED component types. |
With |
Add qualification to the generated query that it should only return entities that do not have the specified component types. |
With |
Add qualification to the generated query that it should only return entities that have all of the specified component type, whether or not it is enabled on each entity. |
With |
Add qualification to the generated query that it should only return entities that have all of the specified component type, whether or not it is enabled on each entity. |
With |
Add qualification to the generated query that it should only return entities that have all of the specified component type, whether or not it is enabled on each entity. |
With |
Set a shared component filter on the query so that it only matches entities with this shared component value. |
With |
Set a shared component filter on the query so that it only matches entities with these shared component values. |
With |
Stores the generated query in a field |