Three.js: 在移动设备上旋转对象

Three.js: Rotate object on mobile devices

参考类似的问题 ,我试图让一个对象在 smartphones/tablets 上旋转。由于我是用mouseDown方法得到的,所以这不适用于移动设备上的触摸。有解决办法吗?

尝试 touchstarttouchend 作为触摸屏的事件侦听器。

window.addEventListener("touchstart", handleStart, false);
window.addEventListener("touchend", handleEnd, false);