Explorar el Código

OrbitControls: Disallow zoom while rotating. (#22660)

Michael Herzog hace 3 años
padre
commit
812647f6b3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      examples/jsm/controls/OrbitControls.js

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

@@ -1026,7 +1026,7 @@ class OrbitControls extends EventDispatcher {
 
 		function onMouseWheel( event ) {
 
-			if ( scope.enabled === false || scope.enableZoom === false || ( state !== STATE.NONE && state !== STATE.ROTATE ) ) return;
+			if ( scope.enabled === false || scope.enableZoom === false || state !== STATE.NONE ) return;
 
 			event.preventDefault();