# EntityIdsToObjectList(NativeArray<EntityId>, List<Object>)

> Translates an array of entity IDs to a list of Object references.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine](/engine/6000.7/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public static void EntityIdsToObjectList(NativeArray<EntityId> entityIds, List<Object> objects)
```

### Parameters

**** (\[NativeArray\<EntityId>]\(/engine/6000.7/script-reference/unity/collections/nativearray1)): IDs of [Object](/engine/6000.7/script-reference/unityengine/object.md) instances.**** (\[List\<Object>]\(https\://learn.microsoft.com/dotnet/api/system.collections.generic.list-1)): List of resolved object references, **entityIds** and **objects** that are of the same length and in the same order, and the list is resized if needed. Missing objects are null.

### Remarks

This is similar to [Resources.EntityIdToObject](/engine/6000.7/script-reference/unityengine/resources/entityidtoobject.md) but resolves several IDs at once.
