diff --git a/src/core/sprites/Sprite.js b/src/core/sprites/Sprite.js index f9d8103..7522dde 100644 --- a/src/core/sprites/Sprite.js +++ b/src/core/sprites/Sprite.js @@ -23,7 +23,6 @@ { Container.call(this); - /** * The anchor sets the origin point of the texture. * The default is 0,0 this means the texture's origin is the top left @@ -300,15 +299,9 @@ bounds.y = minY; bounds.height = maxY - minY; - if(this.children.length) - { - - } - // store a reference so that if this function gets called again in the render cycle we do not have to recalculate this._currentBounds = bounds; - return bounds; };