eventOnOpen(ObjectReferenceakActionRef)
Description
Wiki Description
Event called when the object has finished opening. (Like a door that has finished animating open)
Documentation Comment
Event received when this object is opened
Parameters
ObjectReferenceakActionRef
CK Wiki Description
The reference that caused us to open.
Examples
Event OnOpen(ObjectReference akActionRef)
if (akActionRef == Game.GetPlayer())
Debug.Trace("We were opened by the player")
else
Debug.Trace("Someone (or something) else opened us")
endIf
endEventAuto-Generated Example
Scriptname MyCoolScript extends ObjectReference
event OnOpen(ObjectReference akActionRef)
Debug.trace("Event received - OnOpen: akActionRef = " + akActionRef)
endEvent