我需要触摸支持,但不需要多点触控。 当我添加这个:createjs.Touch.enable(_stage); 这将适用于移动设备:myMC.on(" pressmove",_mouseM);
但是我已经读到它还能实现多点触控。如何在不使用此功能的情况下添加按下移动功能:createjs.Touch.enable(_stage);
我的("点击",_ mouseC);如果我不添加以下内容,则事件很有效:createjs.Touch.enable(_stage);
任何解决方法?
答案 0 :(得分:2)
enable
函数的第二个参数singleTouch
默认设置为false,因此,如果你执行createjs.Touch.enable(_stage, true)
,它将执行您想要的操作。