Browse Source

Slowed down default rotation speed of OrbitControls

Xueqiao Xu 13 years ago
parent
commit
c16a80b34a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/extras/controls/OrbitControls.js

+ 2 - 2
src/extras/controls/OrbitControls.js

@@ -15,10 +15,10 @@ THREE.OrbitControls = function( object, domElement ) {
 	this.userZoomSpeed = 1.0;
 	this.userZoomSpeed = 1.0;
 
 
 	this.userRotate = true;
 	this.userRotate = true;
-	this.userRotateSpeed = 2.0;
+	this.userRotateSpeed = 1.0;
 
 
 	this.autoRotate = false;
 	this.autoRotate = false;
-	this.autoRotateSpeed = 3.0; // 20 seconds per round when fps is 60
+	this.autoRotateSpeed = 2.0; // 30 seconds per round when fps is 60
 
 
 	// internals
 	// internals