Selaa lähdekoodia

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

Mr.doob 7 vuotta sitten
vanhempi
commit
a1c83d64c9
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  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 );
 					};