Method AddSharedComponent
AddSharedComponent<T>(T)
Adds a shared component of type T to the primary Entity
Declaration
[Obsolete("Use the version of the function with the explicit Entity parameter (RemovedAfter Entities 1.0)")]
public void AddSharedComponent<T>(T component) where T : unmanaged, ISharedComponentDataParameters
| Type | Name | Description | 
|---|---|---|
| T | component | The component to add | 
Type Parameters
| Name | Description | 
|---|---|
| T | The type of component to add | 
Remarks
Implicitly it will access the primary entity with TransformUsageFlags.Dynamic.
AddSharedComponent<T>(Entity, T)
Adds a shared component of type T to the Entity
Declaration
public void AddSharedComponent<T>(Entity entity, T component) where T : unmanaged, ISharedComponentDataParameters
| Type | Name | Description | 
|---|---|---|
| Entity | entity | The Entity to add the component to | 
| T | component | The component to add | 
Type Parameters
| Name | Description | 
|---|---|
| T | The type of component to add |