From 757c9a0bbcc3ef7a57ed3a15bc06721bebde06fe Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Mon, 25 Sep 2017 13:05:14 +0100 Subject: [PATCH] Fixed typo. --- v3/src/camera/local/inc/AddOrthographicCamera.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3/src/camera/local/inc/AddOrthographicCamera.js b/v3/src/camera/local/inc/AddOrthographicCamera.js index f956dc47a..1e3cb2a3d 100644 --- a/v3/src/camera/local/inc/AddOrthographicCamera.js +++ b/v3/src/camera/local/inc/AddOrthographicCamera.js @@ -7,7 +7,7 @@ var AddOrthographicCamera = function (width, height) if (width === undefined) { width = config.width; } if (height === undefined) { height = config.height; } - var camra = new OrthographicCamera(this.scene, width, height); + var camera = new OrthographicCamera(this.scene, width, height); return camera; };