mirror of
https://github.com/photonstorm/phaser
synced 2024-11-21 12:13:19 +00:00
Removed Layer3D Game Object and old MeshPipeline
This commit is contained in:
parent
9d23735a23
commit
8708255948
12 changed files with 1 additions and 16 deletions
|
@ -124,15 +124,12 @@ if (typeof WEBGL_RENDERER)
|
|||
// WebGL only Game Objects
|
||||
GameObjects.Shader = require('./shader/Shader');
|
||||
GameObjects.Mesh = require('./mesh/Mesh');
|
||||
GameObjects.Layer3D = require('./layer3d/Layer3D');
|
||||
|
||||
GameObjects.Factories.Shader = require('./shader/ShaderFactory');
|
||||
GameObjects.Factories.Mesh = require('./mesh/MeshFactory');
|
||||
GameObjects.Factories.Layer3D = require('./layer3d/Layer3DFactory');
|
||||
|
||||
GameObjects.Creators.Shader = require('./shader/ShaderCreator');
|
||||
GameObjects.Creators.Mesh = require('./mesh/MeshCreator');
|
||||
GameObjects.Creators.Layer3D = require('./layer3d/Layer3DCreator');
|
||||
|
||||
GameObjects.Light = require('./lights/Light');
|
||||
GameObjects.LightsManager = require('./lights/LightsManager');
|
||||
|
|
|
@ -14,7 +14,6 @@ var LightPipeline = require('./pipelines/LightPipeline');
|
|||
var MultiPipeline = require('./pipelines/MultiPipeline');
|
||||
var RopePipeline = require('./pipelines/RopePipeline');
|
||||
var SinglePipeline = require('./pipelines/SinglePipeline');
|
||||
var MeshPipeline = require('./pipelines/MeshPipeline');
|
||||
|
||||
/**
|
||||
* @classdesc
|
||||
|
@ -147,7 +146,6 @@ var PipelineManager = new Class({
|
|||
this.add(CONST.SINGLE_PIPELINE, new SinglePipeline({ game: game }));
|
||||
this.add(CONST.ROPE_PIPELINE, new RopePipeline({ game: game }));
|
||||
this.add(CONST.LIGHT_PIPELINE, new LightPipeline({ game: game }));
|
||||
this.add(CONST.MESH_PIPELINE, new MeshPipeline({ game: game }));
|
||||
|
||||
this.set(this.MULTI_PIPELINE);
|
||||
},
|
||||
|
|
|
@ -54,17 +54,7 @@ var PIPELINE_CONST = {
|
|||
* @const
|
||||
* @since 3.50.0
|
||||
*/
|
||||
ROPE_PIPELINE: 'RopePipeline',
|
||||
|
||||
/**
|
||||
* The Mesh Pipeline.
|
||||
*
|
||||
* @name Phaser.Renderer.WebGL.Pipelines.MESH_PIPELINE
|
||||
* @type {string}
|
||||
* @const
|
||||
* @since 3.50.0
|
||||
*/
|
||||
MESH_PIPELINE: 'MeshPipeline'
|
||||
ROPE_PIPELINE: 'RopePipeline'
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue