Skip to content

Commit 4b42972

Browse files
committed
Comment out some parts that don't work yet.
1 parent 5dc9d03 commit 4b42972

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/core/Game.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ Phaser.Game.prototype = {
636636
this.sound = new Phaser.SoundManager(this);
637637
this.physics = new Phaser.Physics(this, this.physicsConfig);
638638
this.particles = new Phaser.Particles(this);
639-
this.create = new Phaser.Create(this);
639+
// this.create = new Phaser.Create(this);
640640
this.plugins = new Phaser.PluginManager(this);
641641
this.net = new Phaser.Net(this);
642642

src/gameobjects/spritebatch/SpriteBatch.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Phaser.GameObject.SpriteBatch = function (game, parent, name, addToStage) {
2424

2525
if (parent === undefined || parent === null) { parent = game.world; }
2626

27-
Phaser.Group.call(this, game, parent, name, addToStage);
27+
// Phaser.Group.call(this, game, parent, name, addToStage);
2828

2929
/**
3030
* @property {number} type - Internal Phaser Type value.
@@ -46,6 +46,6 @@ Phaser.GameObject.SpriteBatch = function (game, parent, name, addToStage) {
4646

4747
};
4848

49-
Phaser.GameObject.SpriteBatch.prototype = Object.create(Phaser.Group.prototype);
49+
// Phaser.GameObject.SpriteBatch.prototype = Object.create(Phaser.Group.prototype);
5050

5151
Phaser.GameObject.SpriteBatch.prototype.constructor = Phaser.GameObject.SpriteBatch;

0 commit comments

Comments
 (0)