IsInLocation - ObjectReference
Revision as of 16:25, 24 October 2011 by imported>Jlundin (→See Also)
Member of: ObjectReference Script
Checks to see if this object is in the specified location, or a child of the specified location.
Syntax
bool Function IsInLocation(Location akLocation)
Parameters
- akLocation: The Location to check.
Return Value
Whether this reference is in the specified location.
Examples
; Is the box in the house location?
if Box.IsInLocation(House)
Debug.Trace("Box is in the house!")
endIf