IsDeleted - ObjectReference

Member of: ObjectReference Script

Checks to see if this object is currently flagged for delete.

SyntaxEdit

bool Function IsDeleted() native

ParametersEdit

None.

Return ValueEdit

True if this object is currently flagged for delete.

ExamplesEdit

; Is the actor dead and cleaned up?
if (ImportantActor.IsDead() && ImportantActor.IsDeleted())
  Debug.Trace("Actor's corpse is gone. Need to move important item to chest.")
endIf

See AlsoEdit