LazyLoadReference
Construct a new LazyLoadReference.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Constructor
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
LazyLoadReference(T)
Construct a new LazyLoadReference.
public LazyLoadReference(T asset)
Parameters
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 EntityId will never trigger a load.
LazyLoadReference(EntityId)
Construct a new LazyLoadReference.
public LazyLoadReference(EntityId entityId)
Parameters
The asset EntityId.
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 EntityId will never trigger a load.
LazyLoadReference(int)
Construct a new LazyLoadReference.
public LazyLoadReference(int instanceID)
Parameters
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 trigger a load.