Method AddSharedComponentManaged
AddSharedComponentManaged<T>(T)
Adds a managed 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 AddSharedComponentManaged<T>(T component) where T : struct, ISharedComponentData
Parameters
| 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.
AddSharedComponentManaged<T>(Entity, T)
Adds a managed shared component of type T to the Entity
Declaration
[Obsolete("Managed ISharedComponentData support is deprecated and will be removed. Convert <T> to an unmanaged ISharedComponentData and use the equivalent without the 'Managed' suffix. First deprecated in 6.6.")]
public void AddSharedComponentManaged<T>(Entity entity, T component) where T : struct, ISharedComponentData
Parameters
| 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 |