IsAttached - Cell
Member of: Cell Script
Returns whether this cell is currently 'attached' or not. (In the loaded area)
SyntaxEdit
bool Function IsAttached() native
ParametersEdit
None.
Return ValueEdit
Whether this cell is attached or not
ExamplesEdit
; Is the parent cell attached? (In the loaded area)
if (parentCell.IsAttached())
Debug.Trace("The parent cell is attached")
endIf