Skip to content

Commit

Permalink
Added game.RenderTexture
Browse files Browse the repository at this point in the history
  • Loading branch information
Eemeli Kelokorpi committed Mar 11, 2014
1 parent 7b34ed0 commit cf62475
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/engine/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -12104,8 +12104,7 @@ PIXI.RenderTexture.prototype.renderCanvas = function(displayObject, position, cl
displayObject.worldTransform.ty = position.y;
}

for(var i = 0, j = children.length; i < j; i++)
{
for (var i = children.length - 1; i >= 0; i--) {
children[i].updateTransform();
}

Expand Down Expand Up @@ -14326,5 +14325,6 @@ game.HitCircle = PIXI.Circle;
game.HitEllipse = PIXI.Ellipse;
game.HitPolygon = PIXI.Polygon;
game.TextureCache = PIXI.TextureCache;
game.RenderTexture = PIXI.RenderTexture;

});

0 comments on commit cf62475

Please sign in to comment.