From 32e4d129f350f2bac2fd523a70e71a9b64c0df22 Mon Sep 17 00:00:00 2001 From: David Manthey Date: Thu, 13 Sep 2018 16:23:06 -0400 Subject: [PATCH] Allow modifying the camera view property. This facilitates overriding the camera view. --- src/camera.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/camera.js b/src/camera.js index 771656d45d..3a2b560bdf 100644 --- a/src/camera.js +++ b/src/camera.js @@ -159,7 +159,8 @@ var camera = function (spec) { set: function (view) { mat4.copy(this._view, view); this._update(); - } + }, + configurable: true }); /**