IsActivationBlocked - ObjectReference

Member of: ObjectReference Script

Checks to see if this object currently has its normal activation processing blocked. (Won't be picked up, openend, etc, but will still send OnActivate events)

SyntaxEdit

bool Function IsActivationBlocked()

ParametersEdit

None.

Return ValueEdit

If this object is currently blocking normal activation processing.

ExamplesEdit

; Is this door blocking normal activation?
if (MyDoor.IsActivationBlocked())
  Debug.Trace("The door is ignoring normal activation processing.")
endIf

See AlsoEdit