码迷,mamicode.com
首页 > 移动开发 > 详细

coco2d-js 触摸移动的同时处理点击事件

时间:2014-08-18 18:30:42      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   ar   cti   div   

        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放到不同的类中监听,则可以实现移动和点击不互相影响。

 

coco2d-js 触摸移动的同时处理点击事件,布布扣,bubuko.com

coco2d-js 触摸移动的同时处理点击事件

标签:style   blog   color   io   for   ar   cti   div   

原文地址:http://www.cnblogs.com/kenkofox/p/3919977.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!