Fixed typo 'indetityMatrix' in RenderTexture

This commit is contained in:
Cameron Foale 2013-09-18 17:41:30 +10:00 committed by Cameron Foale
parent c5fc5e3394
commit 4f969901da

View file

@ -9,7 +9,7 @@ Phaser.RenderTexture = function (game, key, width, height) {
this.width = width || 100;
this.height = height || 100;
this.indetityMatrix = PIXI.mat3.create();
this.identityMatrix = PIXI.mat3.create();
this.frame = new PIXI.Rectangle(0, 0, this.width, this.height);