coco creator事件分发
Posted LANGZI7758521
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了coco creator事件分发相关的知识,希望对你有一定的参考价值。
cc.Class({
extends: cc.Component,
onLoad() {
// args are optional param.
this.node.on('say-hello', function (msg, msg2) {
console.log(msg);
console.log(msg2)
});
},
start() {
// At most 5 args could be emit.
this.node.emit('say-hello', 'Hello, this is Cocos Creator', 1);
},
});
以上是关于coco creator事件分发的主要内容,如果未能解决你的问题,请参考以下文章