Removed this.worldVisible = true; line in PIXI.Stage fixes #477
This commit is contained in:
parent
f0d63f7315
commit
5d5f33f601
4 changed files with 10 additions and 12 deletions
|
@ -4,7 +4,7 @@
|
||||||
* Copyright (c) 2012, Mat Groves
|
* Copyright (c) 2012, Mat Groves
|
||||||
* http://goodboydigital.com/
|
* http://goodboydigital.com/
|
||||||
*
|
*
|
||||||
* Compiled: 2014-01-07
|
* Compiled: 2014-01-08
|
||||||
*
|
*
|
||||||
* pixi.js is licensed under the MIT License.
|
* pixi.js is licensed under the MIT License.
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
* http://www.opensource.org/licenses/mit-license.php
|
||||||
|
@ -3355,7 +3355,6 @@ PIXI.Stage = function(backgroundColor)
|
||||||
this.stage.hitArea = new PIXI.Rectangle(0,0,100000, 100000);
|
this.stage.hitArea = new PIXI.Rectangle(0,0,100000, 100000);
|
||||||
|
|
||||||
this.setBackgroundColor(backgroundColor);
|
this.setBackgroundColor(backgroundColor);
|
||||||
this.worldVisible = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// constructor
|
// constructor
|
||||||
|
@ -5158,9 +5157,9 @@ PIXI.WebGLRenderer.updateTextures = function()
|
||||||
for (i = 0; i < PIXI.texturesToDestroy.length; i++)
|
for (i = 0; i < PIXI.texturesToDestroy.length; i++)
|
||||||
PIXI.WebGLRenderer.destroyTexture(PIXI.texturesToDestroy[i]);
|
PIXI.WebGLRenderer.destroyTexture(PIXI.texturesToDestroy[i]);
|
||||||
|
|
||||||
PIXI.texturesToUpdate = [];
|
PIXI.texturesToUpdate.length = 0;
|
||||||
PIXI.texturesToDestroy = [];
|
PIXI.texturesToDestroy.length = 0;
|
||||||
PIXI.Texture.frameUpdates = [];
|
PIXI.Texture.frameUpdates.length = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -57,7 +57,6 @@ PIXI.Stage = function(backgroundColor)
|
||||||
this.stage.hitArea = new PIXI.Rectangle(0,0,100000, 100000);
|
this.stage.hitArea = new PIXI.Rectangle(0,0,100000, 100000);
|
||||||
|
|
||||||
this.setBackgroundColor(backgroundColor);
|
this.setBackgroundColor(backgroundColor);
|
||||||
this.worldVisible = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// constructor
|
// constructor
|
||||||
|
|
|
@ -234,9 +234,9 @@ PIXI.WebGLRenderer.updateTextures = function()
|
||||||
for (i = 0; i < PIXI.texturesToDestroy.length; i++)
|
for (i = 0; i < PIXI.texturesToDestroy.length; i++)
|
||||||
PIXI.WebGLRenderer.destroyTexture(PIXI.texturesToDestroy[i]);
|
PIXI.WebGLRenderer.destroyTexture(PIXI.texturesToDestroy[i]);
|
||||||
|
|
||||||
PIXI.texturesToUpdate = [];
|
PIXI.texturesToUpdate.length = 0;
|
||||||
PIXI.texturesToDestroy = [];
|
PIXI.texturesToDestroy.length = 0;
|
||||||
PIXI.Texture.frameUpdates = [];
|
PIXI.Texture.frameUpdates.length = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue