有没有办法打开和关闭three.js中的轨迹球控制器?
我将此作为我的事件处理程序
function onDocumentMouseMove(event){
if (CAN_MOVE == 1){
// update the mouse variable
mouse.x = ( event.clientX / window.innerWidth ) * 2 - 1;
mouse.y = - ( event.clientY / window.innerHeight ) * 2 + 1;
}
else
{
//do nothing
event.preventDefault();
}
}
答案 0 :(得分:3)
是
controls.enabled = false;