浏览代码

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

Mr.doob 7 年之前
父节点
当前提交
a1c83d64c9
共有 1 个文件被更改,包括 2 次插入2 次删除
  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 );
 					};