From f0f82d3a40d68269bf7c54498f5be8a8ea1318ce Mon Sep 17 00:00:00 2001 From: Zeke Chan Date: Tue, 25 Jun 2024 15:55:55 +0800 Subject: [PATCH] Update ParticleEmitter.js --- src/gameobjects/particles/ParticleEmitter.js | 48 ++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/src/gameobjects/particles/ParticleEmitter.js b/src/gameobjects/particles/ParticleEmitter.js index bc9fae229..fe7b75e84 100644 --- a/src/gameobjects/particles/ParticleEmitter.js +++ b/src/gameobjects/particles/ParticleEmitter.js @@ -368,6 +368,20 @@ var ParticleEmitter = new Class({ */ this.particleClass = Particle; + /** + * An internal object holding the configuration for the Emitter. + * + * These are populated as part of the Emitter configuration parsing. + * + * You typically do not access them directly, but instead use the + * `ParticleEmitter.setConfig` or `ParticleEmitter.updateConfig` methods. + * + * @name Phaser.GameObjects.Particles.ParticleEmitter#config + * @type {Phaser.Types.GameObjects.Particles.ParticleEmitterConfig} + * @since 3.90.0 + */ + this.config = null; + /** * An internal object holding all of the EmitterOp instances. * @@ -936,6 +950,8 @@ var ParticleEmitter = new Class({ return this; } + this.config = config; + var i = 0; var key = ''; @@ -1052,6 +1068,38 @@ var ParticleEmitter = new Class({ return this; }, + /** + * Takes an existing Emitter Configuration file and updates this Emitter. + * Existing properties are overriden while new properties are added. The + * updated configuration is then passed to the `setConfig` method to reset + * the Emitter with the updated configuration. + * + * @method Phaser.GameObjects.Particles.ParticleEmitter#updateConfig + * @since 3.60.0 + * + * @param {Phaser.Types.GameObjects.Particles.ParticleEmitterConfig} config - Settings for this emitter. + * + * @return {this} This Particle Emitter. + */ + updateConfig: function (config) + { + if (!config) + { + return this; + } + + if (!this.config) + { + this.setConfig(config); + } + else + { + this.setConfig({...this.config, ...config}); + } + + return this; + }, + /** * Creates a description of this emitter suitable for JSON serialization. *