GetParentCell - ObjectReference
Revision as of 18:23, 4 July 2015 by imported>Bug64 (Added link to Cell Script)
Member of: ObjectReference Script
Obtains the Cell this object is currently in.
Syntax
Cell Function GetParentCell() native
Parameters
None
Return Value
The Cell the object is currently in.
Examples
; Is this object and the player in the same cell?
if (PinkPony.GetParentCell() == Game.GetPlayer().GetParentCell())
Debug.Trace("We are in the same cell with the pink pony")
endIf
Notes
If the reference is in an unloaded exterior cell, this function will return None.