IsAttached - Cell
Revision as of 15:27, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
Member of: Cell Script
Returns whether this cell is currently 'attached' or not. (In the loaded area)
Syntax[edit | edit source]
bool Function IsAttached() native
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
Whether this cell is attached or not
Examples[edit | edit source]
; Is the parent cell attached? (In the loaded area)
if (parentCell.IsAttached())
Debug.Trace("The parent cell is attached")
endIf