Browse Source

Update OrthographicTrackballControls.js

Zoom behavior on scroll with Trackball Controls (non orthographic)
Nicolas Rannou 10 years ago
parent
commit
37236fd2cb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/js/controls/OrthographicTrackballControls.js

+ 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 ) {
 
-				_this.object.zoom *= factor;
+				_this.object.zoom /= factor;
 
 				if ( _this.staticMoving ) {