Method AddComponentForLinkedEntityGroup
AddComponentForLinkedEntityGroup<T>(Entity, EntityQueryMask, T)
Records a command that adds a component to an entity's LinkedEntityGroup based on an EntityQueryMask. Entities in the LinkedEntityGroup that don't match the mask will be skipped safely.
Declaration
public void AddComponentForLinkedEntityGroup<T>(Entity e, EntityQueryMask mask, T component) where T : unmanaged, IComponentData
Parameters
| Type | Name | Description |
|---|---|---|
| Entity | e | The entity whose LinkedEntityGroup will be referenced. |
| EntityQueryMask | mask | The EntityQueryMask that is used to determine which linked entities to add the component to. Note that EntityQueryMask ignores all query filtering (including chunk filtering and enableable components), and may thus match more entities than expected. |
| T | component | The component value to set. |
Type Parameters
| Name | Description |
|---|---|
| T | The type of component to add. |