Const
The Scene Create Event.
This event is dispatched by a Scene after it has been created by the Scene Manager.
If a Scene has a create method then this event is emitted after that has run.
create
If there is a transition, this event will be fired after the TRANSITION_START event.
TRANSITION_START
Listen to it from a Scene using this.events.on('create', listener).
this.events.on('create', listener)
The Scene Create Event.
This event is dispatched by a Scene after it has been created by the Scene Manager.
If a Scene has a
createmethod then this event is emitted after that has run.If there is a transition, this event will be fired after the
TRANSITION_STARTevent.Listen to it from a Scene using
this.events.on('create', listener).