IsInInterior - ObjectReference
Jump to navigation
Jump to search
Member of: ObjectReference Script
Checks to see if this object is in an interior cell.
Syntax[edit | edit source]
bool Function IsInInterior()
Cell parentCell = GetParentCell()
Return parentCell && parentCell.IsInterior()
EndFunction
Parameters[edit | edit source]
None
Return Value[edit | edit source]
Returns true if the object is in an interior cell.
Examples[edit | edit source]
; Is the box in an interior?
if Box.IsInInterior()
Debug.Trace("Box is inside!")
endIf
Notes[edit | edit source]
- This function will return false for the various interior cells in certain worldspaces due to those being classified by the game engine as being exteriors. See talk page for workaround.