mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
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:
commit
5d6d9bb1d4
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue