Fix entity camera tool from taking over in mirror mode

This commit is contained in:
Ryan Huffman 2015-02-20 10:11:55 -08:00
parent fd3bbb6553
commit c665a3873d

View file

@ -477,7 +477,7 @@ CameraManager = function() {
// Last mode that was first or third person // Last mode that was first or third person
var lastAvatarCameraMode = "first person"; var lastAvatarCameraMode = "first person";
Camera.modeUpdated.connect(function(newMode) { Camera.modeUpdated.connect(function(newMode) {
if (newMode == "first person" || newMode == "third person") { if (newMode != "independent") {
lastAvatarCameraMode = newMode; lastAvatarCameraMode = newMode;
that.disable(true); that.disable(true);
} else { } else {