OnTrigger - ObjectReference
Member of: ObjectReference Script
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).
SyntaxEdit
Event OnTrigger(ObjectReference akActionRef)
ParametersEdit
- akActionRef: The ObjectReference that triggered this reference.
ExamplesEdit
Event OnTrigger(ObjectReference akActionRef)
Debug.Trace(akActionRef + " just hit us!")
EndEvent
NotesEdit
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.