Description
Wiki Description
Checks to see if this object has its 3D currently loaded.
Documentation Comment
Returns if the 3d for this object is loaded or not
Caveats
CK Wiki - Notes
If you need to have the 3d of an object loaded before you progress, consider using ObjectReference.WaitFor3DLoad() instead, as it will not only be more efficient, but also will not be semi-permanently stuck if the object's 3d is not going to load anytime soon (i.e. a while loop using Is3DLoaded on a disabled object).
Examples
; Does the car have 3d?
if (Car.Is3DLoaded())
; We can animate it now, if we want
endIfAuto-Generated Example
bool returnedValue = myObjectReference__toCallFunctionOn.Is3DLoaded()Related Pages
Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
