Ver código fonte

Merge pull request #14323 from reed-jones/patch-1

[DOCS] Update Creating-a-scene.html
Mr.doob 7 anos atrás
pai
commit
0d109f1474
1 arquivos alterados com 2 adições e 2 exclusões
  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 );
 					};