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 or if the entity is still deferred.
Exceptions
| Type | Condition |
|---|---|
| ArgumentException | Throws if the component has a reference to a deferred entity, requiring fixup within the command buffer. |
| NullReferenceException | Throws if an Allocator was not passed in when the EntityCommandBuffer was created. |
| InvalidOperationException | Throws if this EntityCommandBuffer has already been played back. |