- Found in:
- Vanilla
eventOnBegin()
Description
Wiki Description
Event called when a scene begins.
Documentation Comment
Event received when this scene starts up (in parallel with the fragment)
Caveats
CK Wiki - Notes
- This event runs in parallel with the scene begin fragment.
- The scene will not be considered started until the fragment and events on all scripts (on the quest or remotely registered) have finished running.
Examples
Event OnBegin()
Debug.Trace("This scene has started running")
endEventAuto-Generated Example
Scriptname MyCoolScript extends Scene
event OnBegin()
Debug.trace("Event received - OnBegin")
endEvent