0

我开始学习 Three.js。你如何在这个演示中以恒定速度旋转立方体而不是用鼠标旋转它?

4

1 回答 1

1

代替:

plane.rotation.y = cube.rotation.y += ( targetRotation - cube.rotation.y ) * 0.05;

尝试类似:

plane.rotation.y = cube.rotation.y += ROTATION_STEP;

通过ROTATION_STEP您可以控制立方体旋转的速度和方向。

于 2012-06-12T07:35:57.573 回答