IsLoaded - Cell

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Cell Script

Returns whether this cell is currently loaded or not. (In the loaded area or preloaded)

Syntax[edit | edit source]

bool Function IsLoaded() native

Parameters[edit | edit source]

None.

Return Value[edit | edit source]

Whether this cell is loadedor not

Examples[edit | edit source]

; Is the parent cell preloaded?
if (parentCell.IsLoaded() && !parentCell.IsAttached())
  Debug.Trace("The parent cell is pre-loaded")
endIf

See Also[edit | edit source]