2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2013 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-10-25 16:30:37 +00:00
|
|
|
* The Game Object Factory is a quick way to create all of the different sorts of core objects that Phaser uses.
|
2013-10-01 12:54:29 +00:00
|
|
|
*
|
|
|
|
* @class Phaser.GameObjectFactory
|
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game} game - A reference to the currently running game.
|
|
|
|
*/
|
2013-08-30 03:20:14 +00:00
|
|
|
Phaser.GameObjectFactory = function (game) {
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.Game} game - A reference to the currently running Game.
|
|
|
|
*/
|
|
|
|
this.game = game;
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.World} world - A reference to the game world.
|
|
|
|
*/
|
|
|
|
this.world = this.game.world;
|
2013-08-30 03:20:14 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.GameObjectFactory.prototype = {
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-25 16:30:37 +00:00
|
|
|
* Adds an existing object to the game world.
|
|
|
|
* @method Phaser.GameObjectFactory#existing
|
2013-10-25 14:22:45 +00:00
|
|
|
* @param {*} object - An instance of Phaser.Sprite, Phaser.Button or any other display object..
|
|
|
|
* @return {*} The child that was added to the Group.
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-09-10 23:35:21 +00:00
|
|
|
existing: function (object) {
|
|
|
|
|
2013-10-04 15:51:24 +00:00
|
|
|
return this.world.add(object);
|
2013-09-10 23:35:21 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
2013-08-30 03:20:14 +00:00
|
|
|
* Create a new Sprite with specific position and sprite sheet key.
|
|
|
|
*
|
2013-10-25 16:30:37 +00:00
|
|
|
* @method Phaser.GameObjectFactory#sprite
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} x - X position of the new sprite.
|
|
|
|
* @param {number} y - Y position of the new sprite.
|
2013-10-25 13:31:25 +00:00
|
|
|
* @param {string|Phaser.RenderTexture|PIXI.Texture} key - This is the image or texture used by the Sprite during rendering. It can be a string which is a reference to the Cache entry, or an instance of a RenderTexture or PIXI.Texture.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {string|number} [frame] - If the sprite uses an image from a texture atlas or sprite sheet you can pass the frame here. Either a number for a frame ID or a string for a frame name.
|
2013-12-16 15:16:44 +00:00
|
|
|
* @param {Phaser.Group} [group] - Optional Group to add the object to. If not specified it will be added to the World group.
|
2013-10-25 14:22:45 +00:00
|
|
|
* @returns {Phaser.Sprite} the newly created sprite object.
|
2013-08-30 03:20:14 +00:00
|
|
|
*/
|
2013-12-16 15:16:44 +00:00
|
|
|
sprite: function (x, y, key, frame, group) {
|
2013-08-30 03:20:14 +00:00
|
|
|
|
2013-12-16 15:16:44 +00:00
|
|
|
if (typeof group === 'undefined') { group = this.world; }
|
|
|
|
|
|
|
|
return group.create(x, y, key, frame);
|
2013-08-30 03:20:14 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-09-04 20:03:39 +00:00
|
|
|
/**
|
2013-12-16 15:16:44 +00:00
|
|
|
* DEPRECATED - will be removed in Phaser 1.2
|
2013-09-06 19:20:58 +00:00
|
|
|
* Create a new Sprite with specific position and sprite sheet key that will automatically be added as a child of the given parent.
|
2013-09-04 20:03:39 +00:00
|
|
|
*
|
2013-10-25 16:30:37 +00:00
|
|
|
* @method Phaser.GameObjectFactory#child
|
2013-10-04 15:51:24 +00:00
|
|
|
* @param {Phaser.Group} group - The Group to add this child to.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} x - X position of the new sprite.
|
|
|
|
* @param {number} y - Y position of the new sprite.
|
|
|
|
* @param {string|RenderTexture} [key] - The image key as defined in the Game.Cache to use as the texture for this sprite OR a RenderTexture.
|
|
|
|
* @param {string|number} [frame] - If the sprite uses an image from a texture atlas or sprite sheet you can pass the frame here. Either a number for a frame ID or a string for a frame name.
|
2013-10-25 14:22:45 +00:00
|
|
|
* @returns {Phaser.Sprite} the newly created sprite object.
|
2013-09-04 20:03:39 +00:00
|
|
|
*/
|
2013-10-04 15:51:24 +00:00
|
|
|
child: function (group, x, y, key, frame) {
|
2013-09-04 20:03:39 +00:00
|
|
|
|
2013-10-04 15:51:24 +00:00
|
|
|
return group.create(x, y, key, frame);
|
|
|
|
|
2013-09-04 20:03:39 +00:00
|
|
|
},
|
|
|
|
|
2013-08-30 16:09:43 +00:00
|
|
|
/**
|
|
|
|
* Create a tween object for a specific object. The object can be any JavaScript object or Phaser object such as Sprite.
|
|
|
|
*
|
2013-10-25 16:30:37 +00:00
|
|
|
* @method Phaser.GameObjectFactory#tween
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {object} obj - Object the tween will be run on.
|
2013-10-25 13:31:25 +00:00
|
|
|
* @return {Phaser.Tween} Description.
|
2013-08-30 16:09:43 +00:00
|
|
|
*/
|
2013-09-11 01:57:36 +00:00
|
|
|
tween: function (obj) {
|
2013-08-30 16:09:43 +00:00
|
|
|
|
2013-09-11 01:57:36 +00:00
|
|
|
return this.game.tweens.create(obj);
|
2013-08-30 16:09:43 +00:00
|
|
|
|
2013-09-03 00:24:16 +00:00
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-25 14:42:48 +00:00
|
|
|
* A Group is a container for display objects that allows for fast pooling, recycling and collision checks.
|
2013-10-01 12:54:29 +00:00
|
|
|
*
|
2013-10-25 16:30:37 +00:00
|
|
|
* @method Phaser.GameObjectFactory#group
|
2013-12-18 04:40:10 +00:00
|
|
|
* @param {any} parent - The parent Group or DisplayObjectContainer that will hold this group, if any.
|
2013-12-06 01:07:25 +00:00
|
|
|
* @param {string} [name='group'] - A name for this Group. Not used internally but useful for debugging.
|
2013-10-25 13:31:25 +00:00
|
|
|
* @return {Phaser.Group} The newly created group.
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-09-06 19:20:58 +00:00
|
|
|
group: function (parent, name) {
|
|
|
|
|
|
|
|
return new Phaser.Group(this.game, parent, name);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-12-18 04:40:10 +00:00
|
|
|
* Creates a new Sound object.
|
2013-11-25 04:40:04 +00:00
|
|
|
*
|
2013-10-25 16:30:37 +00:00
|
|
|
* @method Phaser.GameObjectFactory#audio
|
2013-11-25 04:40:04 +00:00
|
|
|
* @param {string} key - The Game.cache key of the sound that this object will use.
|
2013-11-26 05:13:56 +00:00
|
|
|
* @param {number} [volume=1] - The volume at which the sound will be played.
|
|
|
|
* @param {boolean} [loop=false] - Whether or not the sound will loop.
|
|
|
|
* @param {boolean} [connect=true] - Controls if the created Sound object will connect to the master gainNode of the SoundManager when running under WebAudio.
|
2013-11-25 04:40:04 +00:00
|
|
|
* @return {Phaser.Sound} The newly created text object.
|
|
|
|
*/
|
2013-11-26 05:13:56 +00:00
|
|
|
audio: function (key, volume, loop, connect) {
|
2013-09-03 00:24:16 +00:00
|
|
|
|
2013-11-26 05:13:56 +00:00
|
|
|
return this.game.sound.add(key, volume, loop, connect);
|
2013-09-03 00:24:16 +00:00
|
|
|
|
2013-09-03 02:19:42 +00:00
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-12-18 04:40:10 +00:00
|
|
|
* Creates a new Sound object.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjectFactory#sound
|
|
|
|
* @param {string} key - The Game.cache key of the sound that this object will use.
|
|
|
|
* @param {number} [volume=1] - The volume at which the sound will be played.
|
|
|
|
* @param {boolean} [loop=false] - Whether or not the sound will loop.
|
|
|
|
* @param {boolean} [connect=true] - Controls if the created Sound object will connect to the master gainNode of the SoundManager when running under WebAudio.
|
|
|
|
* @return {Phaser.Sound} The newly created text object.
|
|
|
|
*/
|
|
|
|
sound: function (key, volume, loop, connect) {
|
|
|
|
|
|
|
|
return this.game.sound.add(key, volume, loop, connect);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new TileSprite object.
|
2013-11-25 04:40:04 +00:00
|
|
|
*
|
2013-10-25 16:30:37 +00:00
|
|
|
* @method Phaser.GameObjectFactory#tileSprite
|
2013-11-25 04:40:04 +00:00
|
|
|
* @param {number} x - X position of the new tileSprite.
|
|
|
|
* @param {number} y - Y position of the new tileSprite.
|
|
|
|
* @param {number} width - the width of the tilesprite.
|
|
|
|
* @param {number} height - the height of the tilesprite.
|
|
|
|
* @param {string|Phaser.RenderTexture|PIXI.Texture} key - This is the image or texture used by the Sprite during rendering. It can be a string which is a reference to the Cache entry, or an instance of a RenderTexture or PIXI.Texture.
|
2013-12-16 15:16:44 +00:00
|
|
|
* @param {Phaser.Group} [group] - Optional Group to add the object to. If not specified it will be added to the World group.
|
2013-11-25 04:40:04 +00:00
|
|
|
* @return {Phaser.TileSprite} The newly created tileSprite object.
|
|
|
|
*/
|
2014-01-02 23:28:22 +00:00
|
|
|
tileSprite: function (x, y, width, height, key, group) {
|
2013-09-03 02:19:42 +00:00
|
|
|
|
2013-12-16 15:16:44 +00:00
|
|
|
if (typeof group === 'undefined') { group = this.world; }
|
|
|
|
|
2014-01-02 23:28:22 +00:00
|
|
|
return group.add(new Phaser.TileSprite(this.game, x, y, width, height, key));
|
2013-09-03 02:19:42 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-12-18 04:40:10 +00:00
|
|
|
* Creates a new Text object.
|
2013-11-25 04:40:04 +00:00
|
|
|
*
|
2013-10-25 16:30:37 +00:00
|
|
|
* @method Phaser.GameObjectFactory#text
|
2013-11-25 04:40:04 +00:00
|
|
|
* @param {number} x - X position of the new text object.
|
|
|
|
* @param {number} y - Y position of the new text object.
|
|
|
|
* @param {string} text - The actual text that will be written.
|
|
|
|
* @param {object} style - The style object containing style attributes like font, font size , etc.
|
2013-12-16 15:16:44 +00:00
|
|
|
* @param {Phaser.Group} [group] - Optional Group to add the object to. If not specified it will be added to the World group.
|
2013-11-25 04:40:04 +00:00
|
|
|
* @return {Phaser.Text} The newly created text object.
|
|
|
|
*/
|
2013-12-16 15:16:44 +00:00
|
|
|
text: function (x, y, text, style, group) {
|
|
|
|
|
|
|
|
if (typeof group === 'undefined') { group = this.world; }
|
2013-09-03 05:02:47 +00:00
|
|
|
|
2013-12-16 15:16:44 +00:00
|
|
|
return group.add(new Phaser.Text(this.game, x, y, text, style));
|
2013-09-03 05:02:47 +00:00
|
|
|
|
|
|
|
},
|
2013-08-30 16:09:43 +00:00
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-12-18 04:40:10 +00:00
|
|
|
* Creates a new Button object.
|
2013-10-01 12:54:29 +00:00
|
|
|
*
|
2013-10-25 16:30:37 +00:00
|
|
|
* @method Phaser.GameObjectFactory#button
|
2013-10-25 14:22:45 +00:00
|
|
|
* @param {number} [x] X position of the new button object.
|
|
|
|
* @param {number} [y] Y position of the new button object.
|
|
|
|
* @param {string} [key] The image key as defined in the Game.Cache to use as the texture for this button.
|
|
|
|
* @param {function} [callback] The function to call when this button is pressed
|
|
|
|
* @param {object} [callbackContext] The context in which the callback will be called (usually 'this')
|
|
|
|
* @param {string|number} [overFrame] This is the frame or frameName that will be set when this button is in an over state. Give either a number to use a frame ID or a string for a frame name.
|
|
|
|
* @param {string|number} [outFrame] This is the frame or frameName that will be set when this button is in an out state. Give either a number to use a frame ID or a string for a frame name.
|
|
|
|
* @param {string|number} [downFrame] This is the frame or frameName that will be set when this button is in a down state. Give either a number to use a frame ID or a string for a frame name.
|
2013-12-31 17:03:09 +00:00
|
|
|
* @param {string|number} [upFrame] This is the frame or frameName that will be set when this button is in an up state. Give either a number to use a frame ID or a string for a frame name.
|
2013-12-16 15:16:44 +00:00
|
|
|
* @param {Phaser.Group} [group] - Optional Group to add the object to. If not specified it will be added to the World group.
|
2013-10-25 14:22:45 +00:00
|
|
|
* @return {Phaser.Button} The newly created button object.
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-12-31 17:03:09 +00:00
|
|
|
button: function (x, y, key, callback, callbackContext, overFrame, outFrame, downFrame, upFrame, group) {
|
2013-09-08 23:30:44 +00:00
|
|
|
|
2013-12-16 15:16:44 +00:00
|
|
|
if (typeof group === 'undefined') { group = this.world; }
|
|
|
|
|
2013-12-31 17:03:09 +00:00
|
|
|
return group.add(new Phaser.Button(this.game, x, y, key, callback, callbackContext, overFrame, outFrame, downFrame, upFrame));
|
2013-09-08 23:30:44 +00:00
|
|
|
|
|
|
|
},
|
2013-09-03 00:24:16 +00:00
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-12-18 04:40:10 +00:00
|
|
|
* Creates a new Graphics object.
|
2013-11-25 04:40:04 +00:00
|
|
|
*
|
2013-10-25 16:30:37 +00:00
|
|
|
* @method Phaser.GameObjectFactory#graphics
|
2013-11-25 04:40:04 +00:00
|
|
|
* @param {number} x - X position of the new graphics object.
|
|
|
|
* @param {number} y - Y position of the new graphics object.
|
2013-12-16 15:16:44 +00:00
|
|
|
* @param {Phaser.Group} [group] - Optional Group to add the object to. If not specified it will be added to the World group.
|
2013-11-25 04:40:04 +00:00
|
|
|
* @return {Phaser.Graphics} The newly created graphics object.
|
|
|
|
*/
|
2013-12-16 15:16:44 +00:00
|
|
|
graphics: function (x, y, group) {
|
|
|
|
|
|
|
|
if (typeof group === 'undefined') { group = this.world; }
|
2013-09-09 16:01:59 +00:00
|
|
|
|
2013-12-16 15:16:44 +00:00
|
|
|
return group.add(new Phaser.Graphics(this.game, x, y));
|
2013-09-09 16:01:59 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-25 14:42:48 +00:00
|
|
|
* Emitter is a lightweight particle emitter. It can be used for one-time explosions or for
|
|
|
|
* continuous effects like rain and fire. All it really does is launch Particle objects out
|
|
|
|
* at set intervals, and fixes their positions and velocities accorindgly.
|
2013-10-01 12:54:29 +00:00
|
|
|
*
|
2013-10-25 16:30:37 +00:00
|
|
|
* @method Phaser.GameObjectFactory#emitter
|
2013-10-25 14:22:45 +00:00
|
|
|
* @param {number} [x=0] - The x coordinate within the Emitter that the particles are emitted from.
|
|
|
|
* @param {number} [y=0] - The y coordinate within the Emitter that the particles are emitted from.
|
|
|
|
* @param {number} [maxParticles=50] - The total number of particles in this emitter.
|
|
|
|
* @return {Phaser.Emitter} The newly created emitter object.
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-09-10 10:09:25 +00:00
|
|
|
emitter: function (x, y, maxParticles) {
|
|
|
|
|
|
|
|
return this.game.particles.add(new Phaser.Particles.Arcade.Emitter(this.game, x, y, maxParticles));
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-12-18 04:40:10 +00:00
|
|
|
* * Create a new BitmapText object.
|
2013-10-01 12:54:29 +00:00
|
|
|
*
|
2013-10-25 16:30:37 +00:00
|
|
|
* @method Phaser.GameObjectFactory#bitmapText
|
2013-10-25 14:22:45 +00:00
|
|
|
* @param {number} x - X position of the new bitmapText object.
|
|
|
|
* @param {number} y - Y position of the new bitmapText object.
|
|
|
|
* @param {string} text - The actual text that will be written.
|
|
|
|
* @param {object} style - The style object containing style attributes like font, font size , etc.
|
2013-12-16 15:16:44 +00:00
|
|
|
* @param {Phaser.Group} [group] - Optional Group to add the object to. If not specified it will be added to the World group.
|
2013-10-25 14:22:45 +00:00
|
|
|
* @return {Phaser.BitmapText} The newly created bitmapText object.
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-12-16 15:16:44 +00:00
|
|
|
bitmapText: function (x, y, text, style, group) {
|
|
|
|
|
|
|
|
if (typeof group === 'undefined') { group = this.world; }
|
2013-09-10 22:51:35 +00:00
|
|
|
|
2013-10-04 15:51:24 +00:00
|
|
|
return this.world.add(new Phaser.BitmapText(this.game, x, y, text, style));
|
2013-09-10 22:51:35 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-25 16:30:37 +00:00
|
|
|
* Creates a new Tilemap object.
|
2013-10-01 12:54:29 +00:00
|
|
|
*
|
2013-10-25 16:30:37 +00:00
|
|
|
* @method Phaser.GameObjectFactory#tilemap
|
2013-12-18 04:40:10 +00:00
|
|
|
* @param {string} key - Asset key for the JSON or CSV map data in the cache.
|
|
|
|
* @param {object|string} tilesets - An object mapping Cache.tileset keys with the tileset names in the JSON file. If a string is provided that will be used.
|
2013-10-25 14:22:45 +00:00
|
|
|
* @return {Phaser.Tilemap} The newly created tilemap object.
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-12-18 04:40:10 +00:00
|
|
|
tilemap: function (key, tilesets) {
|
2013-09-12 03:24:01 +00:00
|
|
|
|
2013-12-18 04:40:10 +00:00
|
|
|
return new Phaser.Tilemap(this.game, key, tilesets);
|
2013-09-12 03:24:01 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-25 16:30:37 +00:00
|
|
|
* A dynamic initially blank canvas to which images can be drawn.
|
2013-10-01 12:54:29 +00:00
|
|
|
*
|
2013-10-25 16:30:37 +00:00
|
|
|
* @method Phaser.GameObjectFactory#renderTexture
|
2013-10-25 14:22:45 +00:00
|
|
|
* @param {string} key - Asset key for the render texture.
|
|
|
|
* @param {number} width - the width of the render texture.
|
|
|
|
* @param {number} height - the height of the render texture.
|
|
|
|
* @return {Phaser.RenderTexture} The newly created renderTexture object.
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-09-11 01:57:36 +00:00
|
|
|
renderTexture: function (key, width, height) {
|
|
|
|
|
|
|
|
var texture = new Phaser.RenderTexture(this.game, key, width, height);
|
|
|
|
|
|
|
|
this.game.cache.addRenderTexture(key, texture);
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
|
2013-11-13 20:57:09 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2013-12-18 04:40:10 +00:00
|
|
|
* Experimental: A BitmapData object which can be manipulated and drawn to like a traditional Canvas object and used to texture Sprites.
|
2013-11-13 20:57:09 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.GameObjectFactory#bitmapData
|
|
|
|
* @param {number} [width=256] - The width of the BitmapData in pixels.
|
|
|
|
* @param {number} [height=256] - The height of the BitmapData in pixels.
|
|
|
|
* @return {Phaser.BitmapData} The newly created BitmapData object.
|
|
|
|
*/
|
2013-11-17 04:33:16 +00:00
|
|
|
bitmapData: function (width, height) {
|
2013-11-13 20:57:09 +00:00
|
|
|
|
2013-11-17 04:33:16 +00:00
|
|
|
return new Phaser.BitmapData(this.game, width, height);
|
2013-11-13 20:57:09 +00:00
|
|
|
|
2013-11-21 04:59:54 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A WebGL shader/filter that can be applied to Sprites.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjectFactory#filter
|
2013-11-28 15:57:09 +00:00
|
|
|
* @param {string} filter - The name of the filter you wish to create, for example HueRotate or SineWave.
|
|
|
|
* @param {any} - Whatever parameters are needed to be passed to the filter init function.
|
2013-11-21 04:59:54 +00:00
|
|
|
* @return {Phaser.Filter} The newly created Phaser.Filter object.
|
|
|
|
*/
|
|
|
|
filter: function (filter) {
|
|
|
|
|
|
|
|
var args = Array.prototype.splice.call(arguments, 1);
|
|
|
|
|
2013-11-28 15:57:09 +00:00
|
|
|
var filter = new Phaser.Filter[filter](this.game);
|
2013-11-21 04:59:54 +00:00
|
|
|
|
2013-11-28 15:57:09 +00:00
|
|
|
filter.init.apply(filter, args);
|
2013-11-21 04:59:54 +00:00
|
|
|
|
2013-11-28 15:57:09 +00:00
|
|
|
return filter;
|
2013-11-21 04:59:54 +00:00
|
|
|
|
2013-10-25 16:30:37 +00:00
|
|
|
}
|
2013-09-11 01:57:36 +00:00
|
|
|
|
2013-12-30 16:54:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.GameObjectFactory.prototype.constructor = Phaser.GameObjectFactory;
|