UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.

27 lines (25 loc) 763 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2020 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * The Sound Stop Event. * * This event is dispatched by both Web Audio and HTML5 Audio Sound objects when they are stopped. * * Listen to it from a Sound instance using `Sound.on('stop', listener)`, i.e.: * * ```javascript * var music = this.sound.add('key'); * music.on('stop', listener); * music.play(); * music.stop(); * ``` * * @event Phaser.Sound.Events#STOP * @since 3.0.0 * * @param {(Phaser.Sound.WebAudioSound|Phaser.Sound.HTML5AudioSound)} sound - A reference to the Sound that emitted the event. */ module.exports = 'stop';