mirror of
https://github.com/lubosz/overte.git
synced 2025-04-08 07:22:43 +02:00
Fix create duplication key conflicting with camera orbit
This commit is contained in:
parent
93d5d9bd3f
commit
609b533cf2
1 changed files with 1 additions and 1 deletions
|
@ -355,7 +355,7 @@ CameraManager = function() {
|
|||
return;
|
||||
}
|
||||
|
||||
if (event.isRightButton || (event.isLeftButton && event.isControl && !event.isShifted)) {
|
||||
if (event.isRightButton || (event.isLeftButton && event.isAlt && !event.isShifted)) {
|
||||
that.mode = MODE_ORBIT;
|
||||
} else if (event.isMiddleButton || (event.isLeftButton && event.isControl && event.isShifted)) {
|
||||
that.mode = MODE_PAN;
|
||||
|
|
Loading…
Reference in a new issue