Fixed bug with interaction when setting internal stage reference
This commit is contained in:
parent
e7205ad115
commit
0f6bf01788
3 changed files with 15 additions and 9 deletions
|
@ -4,7 +4,7 @@
|
||||||
* Copyright (c) 2012, Mat Groves
|
* Copyright (c) 2012, Mat Groves
|
||||||
* http://goodboydigital.com/
|
* http://goodboydigital.com/
|
||||||
*
|
*
|
||||||
* Compiled: 2014-01-05
|
* Compiled: 2014-01-06
|
||||||
*
|
*
|
||||||
* 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
|
||||||
|
@ -1342,7 +1342,7 @@ PIXI.DisplayObjectContainer.prototype.removeChild = function(child)
|
||||||
if ( index !== -1 )
|
if ( index !== -1 )
|
||||||
{
|
{
|
||||||
// update the stage reference..
|
// update the stage reference..
|
||||||
if(this.stage)this.removeStageReference();
|
if(this.stage)child.removeStageReference();
|
||||||
|
|
||||||
child.parent = undefined;
|
child.parent = undefined;
|
||||||
this.children.splice( index, 1 );
|
this.children.splice( index, 1 );
|
||||||
|
@ -1424,24 +1424,27 @@ PIXI.DisplayObjectContainer.prototype.getBounds = function()
|
||||||
PIXI.DisplayObjectContainer.prototype.setStageReference = function(stage)
|
PIXI.DisplayObjectContainer.prototype.setStageReference = function(stage)
|
||||||
{
|
{
|
||||||
this.stage = stage;
|
this.stage = stage;
|
||||||
|
if(this.interactive)this.stage.dirty = true;
|
||||||
|
|
||||||
for(var i=0,j=this.children.length; i<j; i++)
|
for(var i=0,j=this.children.length; i<j; i++)
|
||||||
{
|
{
|
||||||
var child = this.children[i];
|
var child = this.children[i];
|
||||||
if(child.interactive)this.stage.dirty = true;
|
|
||||||
child.setStageReference(stage);
|
child.setStageReference(stage);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
PIXI.DisplayObjectContainer.prototype.removeStageReference = function()
|
PIXI.DisplayObjectContainer.prototype.removeStageReference = function()
|
||||||
{
|
{
|
||||||
|
|
||||||
for(var i=0,j=this.children.length; i<j; i++)
|
for(var i=0,j=this.children.length; i<j; i++)
|
||||||
{
|
{
|
||||||
var child = this.children[i];
|
var child = this.children[i];
|
||||||
if(child.interactive)this.stage.dirty = true;
|
|
||||||
child.removeStageReference();
|
child.removeStageReference();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(this.interactive)this.stage.dirty = true;
|
||||||
|
|
||||||
this.stage = null;
|
this.stage = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -176,7 +176,7 @@ PIXI.DisplayObjectContainer.prototype.removeChild = function(child)
|
||||||
if ( index !== -1 )
|
if ( index !== -1 )
|
||||||
{
|
{
|
||||||
// update the stage reference..
|
// update the stage reference..
|
||||||
if(this.stage)this.removeStageReference();
|
if(this.stage)child.removeStageReference();
|
||||||
|
|
||||||
child.parent = undefined;
|
child.parent = undefined;
|
||||||
this.children.splice( index, 1 );
|
this.children.splice( index, 1 );
|
||||||
|
@ -258,24 +258,27 @@ PIXI.DisplayObjectContainer.prototype.getBounds = function()
|
||||||
PIXI.DisplayObjectContainer.prototype.setStageReference = function(stage)
|
PIXI.DisplayObjectContainer.prototype.setStageReference = function(stage)
|
||||||
{
|
{
|
||||||
this.stage = stage;
|
this.stage = stage;
|
||||||
|
if(this.interactive)this.stage.dirty = true;
|
||||||
|
|
||||||
for(var i=0,j=this.children.length; i<j; i++)
|
for(var i=0,j=this.children.length; i<j; i++)
|
||||||
{
|
{
|
||||||
var child = this.children[i];
|
var child = this.children[i];
|
||||||
if(child.interactive)this.stage.dirty = true;
|
|
||||||
child.setStageReference(stage);
|
child.setStageReference(stage);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
PIXI.DisplayObjectContainer.prototype.removeStageReference = function()
|
PIXI.DisplayObjectContainer.prototype.removeStageReference = function()
|
||||||
{
|
{
|
||||||
|
|
||||||
for(var i=0,j=this.children.length; i<j; i++)
|
for(var i=0,j=this.children.length; i<j; i++)
|
||||||
{
|
{
|
||||||
var child = this.children[i];
|
var child = this.children[i];
|
||||||
if(child.interactive)this.stage.dirty = true;
|
|
||||||
child.removeStageReference();
|
child.removeStageReference();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(this.interactive)this.stage.dirty = true;
|
||||||
|
|
||||||
this.stage = null;
|
this.stage = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue