Struct QueryEnumerableWithEntity<T1, T2, T3, T4>
An enumeration interface for the entities that match an Entity
Namespace: Unity.Entities
Assembly: solution.dll
Syntax
public readonly struct QueryEnumerableWithEntity<T1, T2, T3, T4>
Type Parameters
Name | Description |
---|---|
T1 | A component type |
T2 | A component type |
T3 | A component type |
T4 | A component type |
Remarks
This feature is primarily intended as a backend implementation for Query<T1>(). Application code should prefer to use that interface rather than using this type directly.
Constructors
Name | Description |
---|---|
Query |
Construct a new object. |
Fields
Name | Description |
---|---|
Item1 | A component value for the current entity. |
Item2 | A component value for the current entity. |
Item3 | A component value for the current entity. |
Item4 | A component value for the current entity. |
Item5 | The current entity. |
Methods
Name | Description |
---|---|
Deconstruct(out T1, out T2, out T3, out T4, out Entity) | Clean up an existing object. |
Get |
Returns an enumerator over the entities in this query. |
With |
Specify all read-only component types that must be present. |
With |
Specify all read-only component types that must be present. |
With |
Specify all read-only component types that must be present. |
With |
Specify optional read-only component types. |
With |
Specify optional read-only component types. |
With |
Specify optional read-only component types. |
With |
Only select components in chunks in which the specified component might have changed since the last time the system updated. |
With |
Only select components in chunks in which the specified component might have changed since the last time the system updated. |
With |
Specify component types that must be absent. |
With |
Specify component types that must be absent. |
With |
Specify component types that must be absent. |
With |
Specify your own |
With |
Only select chunks that have a specified value for a shared component. |
With |
Only select chunks that have a specified value for a shared component. |