Method GetComponentDataFromEntity
GetComponentDataFromEntity<T>(Boolean)
Gets an dictionary-like container containing all components of type T, keyed by Entity.
Declaration
[BurstCompatible(GenericTypeArguments = new Type[]{typeof(BurstCompatibleComponentData)})]
public ComponentDataFromEntity<T> GetComponentDataFromEntity<T>(bool isReadOnly = false)
where T : struct, IComponentData
Parameters
Type | Name | Description |
---|---|---|
Boolean | isReadOnly | Whether the data is only read, not written. Access data as read-only whenever possible. |
Returns
Type | Description |
---|---|
ComponentDataFromEntity<T> | All component data of type T. |
Type Parameters
Name | Description |
---|---|
T | A struct that implements IComponentData. |