Method SetComponent
SetComponent<T>(Entity, T)
Sets the value of a component of an entity.
Declaration
[Obsolete("Use SystemAPI.SetComponent instead (RemovedAfter Entities 1.0)")]
protected void SetComponent<T>(Entity entity, T component) where T : unmanaged, IComponentData
Parameters
| Type | Name | Description |
|---|---|---|
| Entity | entity | The entity. |
| T | component | The data to set. |
Type Parameters
| Name | Description |
|---|---|
| T | The component type. |
Remarks
Use this method to look up and set data in another entity using its Entity object. For example, if you have a component that contains an Entity field, you can update the component data for the referenced entity using this method.
When iterating over entities coming from a query, do not use this method to update data of the current entity in the set. This function is much slower than accessing the data directly.
When you call this method on the main thread, it invokes SetComponentData<T>(Entity, T).
This lookup method results in a slower, indirect memory access. When possible, organize your data to minimize the need for indirect lookups.
Exceptions
| Type | Condition |
|---|---|
| ArgumentException | Thrown if the component type has no fields. |