2
0
Эх сурвалжийг харах

Update Creating-a-scene.html

Final cube rotation code didn't match tutorial code
Reed Jones 7 жил өмнө
parent
commit
11639ff2c1

+ 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 );
 					};