From 4f969901dac651ac034126528ff30d7582394191 Mon Sep 17 00:00:00 2001 From: Cameron Foale Date: Wed, 18 Sep 2013 17:41:30 +1000 Subject: [PATCH] Fixed typo 'indetityMatrix' in RenderTexture --- src/gameobjects/RenderTexture.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gameobjects/RenderTexture.js b/src/gameobjects/RenderTexture.js index 69cedac9..4136c5d5 100644 --- a/src/gameobjects/RenderTexture.js +++ b/src/gameobjects/RenderTexture.js @@ -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);