IsActivationBlocked - ObjectReference

Revision as of 16:33, 20 March 2015 by imported>Plplecuyer
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: ObjectReference Script

Checks to see if this object currently has its normal activation processing blocked. (Won't be picked up, opened, 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