eventOnTrigger(ObjectReferenceakActionRef)
Description
Wiki Description
Event called when the object reference is a trigger and has been triggered. This event will be sent every so often while a reference stays inside the trigger box (approximately two times a second).
Documentation Comment
Event received when a this trigger is tripped
Caveats
CK Wiki - Notes
This event is sent repeatedly, so care should be taken not to tie up the script system unnecessarily with a long complicated handler. Try using the trigger enter and leave events instead.
Parameters
ObjectReferenceakActionRef
CK Wiki Description
The ObjectReference that triggered this reference.
Examples
Event OnTrigger(ObjectReference akActionRef)
Debug.Trace(akActionRef + " just hit us!")
EndEventAuto-Generated Example
Scriptname MyCoolScript extends ObjectReference
event OnTrigger(ObjectReference akActionRef)
Debug.trace("Event received - OnTrigger: akActionRef = " + akActionRef)
endEvent