这期内容当中小编将会给大家带来有关cocos2d-html5中如何为sprite添加触摸事件,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
cocos2d-html5学习之三-为sprite添加触摸事件
在斗地主中,使用了cc.Sprite来实现扑克,但是cc.Sprite默认并不能接收触摸事件,需要手动将它注册到事件分配器中。
1. 在onEnter中注册为代理,由于扑克牌会产生重叠,在选择的时候不能让触摸事件传递到被覆盖的牌上,因此不能使用standardTargetedDelegate。
onEnter:function(){
cc.registerTargetedDelegate(0, true, this);
this._touchEnabled=true;
this._super();
}
2. 实现其它几个触摸事件,其中onTouchBegan中需要返回true,否则不会调用后面的onTouchEnded方法。
onTouchBegan:function(touches,event){
var rect = this.touchRect();
var point = touches.getLocation();
if(cc.rectContainsPoint(this.touchRect(),touches.getLocation())){
this._touchBegan=true;
return true;
}
return false;
}
onTouchEnded:function(touches,event){
if(this._touchBegan){
this._touchBegan=false;
if(this.active) {
this.active = false;
this.setPositionY(this.getPositionY() - 30);
}
else {
this.active = true;
this.setPositionY(this.getPositionY() + 30);
}
}
}
上述就是小编为大家分享的cocos2d-html5中如何为sprite添加触摸事件了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注亿速云行业资讯频道。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。
原文链接:https://www.xuebuyuan.com/3266103.html