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);