phaser/src/gameobjects/particles/ParticleManagerCreator.js

54 lines
1.8 KiB
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
2022-02-28 14:29:51 +00:00
* @copyright 2022 Photon Storm Ltd.
2019-05-10 15:15:04 +00:00
* @license {@link https://opensource.org/licenses/MIT|MIT License}
2018-02-12 16:01:20 +00:00
*/
var GameObjectCreator = require('../GameObjectCreator');
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
2018-02-06 19:22:20 +00:00
var GetFastValue = require('../../utils/object/GetFastValue');
var ParticleEmitterManager = require('./ParticleEmitterManager');
2018-02-06 19:22:20 +00:00
/**
* Creates a new Particle Emitter Manager Game Object and returns it.
*
* Note: This method will only be available if the Particles Game Object has been built into Phaser.
*
* @method Phaser.GameObjects.GameObjectCreator#particles
* @since 3.0.0
*
* @param {Phaser.Types.GameObjects.Particles.ParticleEmitterManagerConfig} config - The configuration object this Game Object will use to create itself.
* @param {boolean} [addToScene] - Add this Game Object to the Scene after creating it? If set this argument overrides the `add` property in the config object.
2018-02-06 19:22:20 +00:00
*
2018-02-06 22:25:23 +00:00
* @return {Phaser.GameObjects.Particles.ParticleEmitterManager} The Game Object that was created.
2018-02-06 19:22:20 +00:00
*/
GameObjectCreator.register('particles', function (config, addToScene)
{
if (config === undefined) { config = {}; }
var key = GetAdvancedValue(config, 'key', null);
var frame = GetAdvancedValue(config, 'frame', null);
var emitters = GetFastValue(config, 'emitters', null);
// frame is optional and can contain the emitters array or object if skipped
var manager = new ParticleEmitterManager(this.scene, key, frame, emitters);
if (addToScene !== undefined)
{
config.add = addToScene;
}
var add = GetFastValue(config, 'add', false);
if (add)
{
this.displayList.add(manager);
}
else
{
this.updateList.add(manager);
}
return manager;
});