OnLockStateChanged - ObjectReference

From the CreationKit Wiki
Revision as of 18:12, 23 August 2010 by imported>Jlundin (Created page with 'Category:Scripting Category:Papyrus Category:Events '''Member of:''' ObjectReference Script Event called when the lock on this object's state changes. (Locked, u…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: ObjectReference Script

Event called when the lock on this object's state changes. (Locked, unlocked, level changed, etc)

Syntax

Event OnLockStateChanged()

Parameters

None.

Examples

Event OnLockStateChanged()
  if IsLocked()
    Debug.Trace("We are locked!")
  endIf
endEvent

See Also