Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何旋转模型并随着旋转改变其前进方向?
我旋转,但它只是在轴上旋转,向前仍然是一样的。
这可能是一个菜鸟问题,但它一直在踢我的屁股。
您可以使用look at方法将空间旋转到目标点。下面的示例使用up矢量 1,0,0对相机进行空间观察
look at
up
spatial_x.lookAt(cam.getLocation(),new Vector3f(1,0,0));
如果您只想绕 x 轴旋转 0.2 弧度:
spatial_x.rotate(0.2,0,0);
Y 轴为 1 弧度,Z 轴为 3 弧度:
spatial_x.rotate(0,1,3);