Fixed typo.

This commit is contained in:
Richard Davey 2017-09-25 13:05:14 +01:00
parent 8861464ec1
commit 757c9a0bbc

View file

@ -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;
};