Fix create duplication key conflicting with camera orbit

This commit is contained in:
Ryan Huffman 2019-08-06 17:22:30 -07:00
parent 93d5d9bd3f
commit 609b533cf2

View file

@ -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;