Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


InstanceIDToObjectList(NativeArray<int>, List<Object>)

Translates an array of instance IDs to a list of Object references.
Read time 1 minuteLast updated 3 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
Warning
Removed. InstanceIDToObjectList is obsolete. Use EntityIdsToObjectList instead.
public static void InstanceIDToObjectList(NativeArray<int> instanceIDs, List<Object> objects)

Parameters

instanceIDs

IDs of Object instances.

List of resoved object references, instanceIDs and objects will be of the same length and in the same order, the list will be resized if needed. Missing objects will be null.

Remarks

This is similar to Resources.InstanceIDToObject but resolves several IDs at once.