Jelajahi Sumber

Fix middle-click zooming error

Satori 9 tahun lalu
induk
melakukan
4cd469308d
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  1. 2 2
      examples/js/controls/OrbitControls.js

+ 2 - 2
examples/js/controls/OrbitControls.js

@@ -479,11 +479,11 @@ THREE.OrbitControls = function ( object, domElement ) {
 
 		if ( dollyDelta.y > 0 ) {
 
-			dollyIn( scope.getZoomScale() );
+			dollyIn( getZoomScale() );
 
 		} else if ( dollyDelta.y < 0 ) {
 
-			dollyOut( scope.getZoomScale() );
+			dollyOut( getZoomScale() );
 
 		}