2017-10-17 03:19:03 +00:00
|
|
|
var GameObject = require('../GameObject');
|
|
|
|
|
2018-02-06 19:22:20 +00:00
|
|
|
/**
|
|
|
|
* Renders this Game Object with the WebGL Renderer to the given Camera.
|
|
|
|
* The object will not render if any of its renderFlags are set or it is being actively filtered out by the Camera.
|
|
|
|
* This method should not be called directly. It is a utility function of the Render module.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Particles.EmitterManager#renderWebGL
|
|
|
|
* @since 3.0.0
|
|
|
|
* @private
|
|
|
|
*
|
|
|
|
* @param {Phaser.Renderer.WebGLRenderer} renderer - A reference to the current active WebGL renderer.
|
|
|
|
* @param {Phaser.GameObjects.Particles} emitterManager - The Game Object being rendered in this call.
|
|
|
|
* @param {number} interpolationPercentage - Reserved for future use and custom pipelines.
|
|
|
|
* @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera that is rendering the Game Object.
|
|
|
|
*/
|
2017-10-17 03:19:03 +00:00
|
|
|
var ParticleManagerWebGLRenderer = function (renderer, emitterManager, interpolationPercentage, camera)
|
|
|
|
{
|
|
|
|
var emitters = emitterManager.emitters;
|
|
|
|
|
|
|
|
if (emitters.length === 0 || GameObject.RENDER_MASK !== emitterManager.renderFlags || (emitterManager.cameraFilter > 0 && (emitterManager.cameraFilter & camera._id)))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-29 21:46:48 +00:00
|
|
|
this.pipeline.drawEmitterManager(emitterManager, camera);
|
2017-10-17 03:19:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = ParticleManagerWebGLRenderer;
|