Background for Starfield
Member of the Scene script
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")
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Scene

event OnBegin()
    Debug.trace("Event received - OnBegin")
endEvent

Related Pages


Additional References

View this event’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.