mirror of
https://github.com/Amterasu/cocos-vuecli-demo.git
synced 2024-12-26 11:48:42 +00:00
21 lines
409 B
JavaScript
21 lines
409 B
JavaScript
|
cc.Class({
|
||
|
extends: cc.Component,
|
||
|
|
||
|
properties: {
|
||
|
|
||
|
},
|
||
|
|
||
|
onLoad: function () {
|
||
|
this.node.on(
|
||
|
cc.Node.EventType.TOUCH_END,
|
||
|
e => {
|
||
|
e.stopPropagation();
|
||
|
if (window.eventBus) {
|
||
|
window.eventBus.emit('WEB_MSG_TYPE.SELECT_NODE', e.currentTarget);
|
||
|
}
|
||
|
},
|
||
|
this
|
||
|
);
|
||
|
},
|
||
|
});
|