我在文件a.ts里监听了
this.node.on(“HuntFish”,this.HuntFish,this);
private HuntFish(msg)
{
console.log("=================================================" + msg);
}
然后在b.ts用下面2个触发方式都没方法触发,是为什么呢
this.node.emit(‘HuntFish’, ‘Hello, this is Cocos Creator’);
this.node.dispatchEvent(new cc.Event.EventCustom(“HuntFish”,true));