Forráskód Böngészése

Update OrthographicTrackballControls.js

Zoom behavior on scroll with Trackball Controls (non orthographic)
Nicolas Rannou 10 éve
szülő
commit
37236fd2cb

+ 1 - 1
examples/js/controls/OrthographicTrackballControls.js

@@ -245,7 +245,7 @@ THREE.OrthographicTrackballControls = function ( object, domElement ) {
 
 
 			if ( Math.abs( factor - 1.0 ) > EPS && factor > 0.0 ) {
 			if ( Math.abs( factor - 1.0 ) > EPS && factor > 0.0 ) {
 
 
-				_this.object.zoom *= factor;
+				_this.object.zoom /= factor;
 
 
 				if ( _this.staticMoving ) {
 				if ( _this.staticMoving ) {