Method WithPresentChunkComponentRW
WithPresentChunkComponentRW<T>()
Add a required chunk component type to the query, whether it is enabled or disabled.
Declaration
public EntityQueryBuilder WithPresentChunkComponentRW<T>()
Returns
Type | Description |
---|---|
EntityQueryBuilder | The builder object that invoked this method. |
Type Parameters
Name | Description |
---|---|
T | Component type to use as a required, read-write chunk component |
Remarks
Call this method on the query builder to find entities that have all the specified chunk components, whether it is enabled or disabled. Chunk components are a distinct component type, which are different from adding the same type as a standard component.
To add additional required Chunk Components, call this method multiple times.
The query will request read-only access to the referenced component(s). To request read/write access, use Unity.Entities.EntityQueryBuilder.WithPresentChunkComponentRW``1(``0@)