/**
* Author:W
* 事件:监听、关闭以及发射
* 1.通过this.node.on()函数来注册监听
* 2.通过this.node.off()函数来关闭监听【注意:必须与注册监听时参数一致,否则不能关闭失效】
* 3.通过this.node.emit()函数来发射事件
* 4.也可以通过this.node.dispatchEvent()函数来发射事件【特别之处:可以当做事件来传递】
*/
cc.Class({
extends: cc.Component,
properties: {
},
// LIFE-CYCLE CALLBACKS:
onLoad () {
this.registerEvent();
},
start () {
this.sendEvent();
},
onDestroy(){
this.unRegisterEvent();
},
registerEvent:function(){
this.node.on('trigger',this.onTriggerHandle,this);
this.node.on('trigger2',this.onTriggerHandle2,this);
cc.log("事件注册");
},
unRegisterEvent:function(){
this.node.off('trigger',this.onTriggerHandle,this);
this.node.off('trigger2',this.onTriggerHandle2,this);
cc.log("事件注销");
},
//事件发射方式1:
//事件发射方式2:
//事件发射后,要进行事件派送,从该节点开始,不断地冒泡向上传递给其父节点,直到根节点为止。除非
//在某个节点响应函数里调用了event.stopPropagation()来禁止。
sendEvent:function(){
cc.log("通过emit发射事件");
this.node.emit('trigger','WangLunQiang');
cc.log("通过dispatchEvent发射事件");
this.node.dispatchEvent(new cc.Event.EventCustom('trigger2',true));
},
//事件处理函数
onTriggerHandle:function(msg){
cc.log("事件1发生时,处理的函数 msg="+msg);
},
//事件处理函数
onTriggerHandle2:function(event){
cc.log("事件2发生时,处理的函数 event="+event);
event.stopPropagation();
},
// update (dt) {},
});
事件的监听关闭以及发射
最新推荐文章于 2022-07-03 18:01:35 发布