Browse Source

Merge branch 'dev' of https://github.com/mrdoob/three.js into dev

Mr.doob 7 years ago
parent
commit
a1c83d64c9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/manual/introduction/Creating-a-scene.html

+ 2 - 2
docs/manual/introduction/Creating-a-scene.html

@@ -150,8 +150,8 @@
 					var animate = function () {
 						requestAnimationFrame( animate );
 
-						cube.rotation.x += 0.1;
-						cube.rotation.y += 0.1;
+						cube.rotation.x += 0.01;
+						cube.rotation.y += 0.01;
 
 						renderer.render( scene, camera );
 					};