UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.

22 lines (20 loc) 772 B
/** * @author Richard Davey <rich@phaser.io> * @copyright 2013-2025 Phaser Studio Inc. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * The Particle Emitter Explode Event. * * This event is dispatched when a Particle Emitter explodes a set of particles. * * Listen for it on a Particle Emitter instance using `ParticleEmitter.on('explode', listener)`. * * @event Phaser.GameObjects.Particles.Events#EXPLODE * @type {string} * @since 3.60.0 * * @param {Phaser.GameObjects.Particles.ParticleEmitter} emitter - A reference to the Particle Emitter that just completed. * @param {Phaser.GameObjects.Particles.Particle} particle - The most recently emitted Particle. */ module.exports = 'explode';