Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


LazyLoadReference

Construct a new LazyLoadReference.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Constructor
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule

LazyLoadReference(T)

Construct a new LazyLoadReference.
public LazyLoadReference(T asset)

Parameters

asset

T
The asset reference.

Remarks

Note that the signature which takes an asset reference may trigger loading the referenced object into memory if the object is not already loaded. The signature which takes an instance ID will never triggers a load.

LazyLoadReference(int)

Construct a new LazyLoadReference.
public LazyLoadReference(int instanceID)

Parameters

instanceID

The asset instance ID.

Remarks

Note that the signature which takes an asset reference may trigger loading the referenced object into memory if the object is not already loaded. The signature which takes an instance ID will never triggers a load.