Method ReplaceComponentForLinkedEntityGroup
ReplaceComponentForLinkedEntityGroup<T>(Entity, T)
Records a command that replaces a component value for an entity's LinkedEntityGroup. Entities in the LinkedEntityGroup that don't have the component will be skipped safely.
Declaration
public void ReplaceComponentForLinkedEntityGroup<T>(Entity e, T component) where T : unmanaged, IComponentData
Parameters
| Type | Name | Description |
|---|---|---|
| Entity | e | The entity whose LinkedEntityGroup will be referenced. |
| T | component | The component value to set. |
Type Parameters
| Name | Description |
|---|---|
| T | The type of component to add. |
Remarks
At playback, this command throws an error if the entity is destroyed before playback.
Exceptions
| Type | Condition |
|---|---|
| NullReferenceException | Throws if an Allocator was not passed in when the EntityCommandBuffer was created. |
| InvalidOperationException | Throws if this EntityCommandBuffer has already been played back. |