Merge pull request #4320 from huffman/fix-camera-move-on-mirror

Fix entity camera tool from taking over in mirror mode
This commit is contained in:
Brad Hefta-Gaub 2015-02-20 10:40:03 -08:00
commit 5d6d9bb1d4

View file

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