mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 01:53:10 +02:00
Fix entity camera tool from taking over in mirror mode
This commit is contained in:
parent
fd3bbb6553
commit
c665a3873d
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue