phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.
20 lines (18 loc) • 639 B
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* The Scene Systems Start Event.
*
* This event is dispatched by a Scene during the Scene Systems start process. Primarily used by Scene Plugins.
*
* Listen to it from a Scene using `this.scene.events.on('start', listener)`.
*
* @event Phaser.Scenes.Events#START
* @since 3.0.0
*
* @param {Phaser.Scenes.Systems} sys - A reference to the Scene Systems class of the Scene that emitted this event.
*/
module.exports = 'start';