首页 > 代码库 > coco2d-js 触摸移动的同时处理点击事件
coco2d-js 触摸移动的同时处理点击事件
cc.eventManager.addListener({ event: cc.EventListener.TOUCH_ALL_AT_ONCE, onTouchesMoved:function (touches, event) { for (var i = 0; i < touches.length; i++) { jslog("touches:", i, touches[i].getLocation().x, touches[i].getLocation().y); } }, onTouchBegan:function (touches, event) { jslog("click", touches[0].getLocation().x, touches[0].getLocation().y); } }, this);
如果把onTouchesMovied和onTouchesEnded放到不同的类中监听,则可以实现移动和点击不互相影响。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。