Browse Source

TrackballControls: Fix pinch to zoom with ortho cams. (#22709)

Michael Herzog 3 năm trước cách đây
mục cha
commit
62ecbf883d

+ 1 - 1
examples/jsm/controls/TrackballControls.js

@@ -208,7 +208,7 @@ class TrackballControls extends EventDispatcher {
 
 
 				} else if ( scope.object.isOrthographicCamera ) {
 				} else if ( scope.object.isOrthographicCamera ) {
 
 
-					scope.object.zoom *= factor;
+					scope.object.zoom /= factor;
 					scope.object.updateProjectionMatrix();
 					scope.object.updateProjectionMatrix();
 
 
 				} else {
 				} else {