Method GetComponentDataFromEntity
GetComponentDataFromEntity<T>(Boolean)
Gets an dictionary-like container containing all components of type T, keyed by Entity.
Declaration
public ComponentDataFromEntity<T> GetComponentDataFromEntity<T>(bool isReadOnly = false)
    where T : struct, IComponentDataParameters
| 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. | 
Remarks
When you call this method on the main thread, it invokes GetComponentDataFromEntity<T>(Boolean).
(An Entities.ForEach function invoked with Run() executes on the main thread.) When you call this method
inside a job scheduled using Entities.ForEach, this method gets replaced direct access to
ComponentDataFromEntity<T>.