CocosCreator 代码添加点击事件函数
Posted kingbook
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CocosCreator 代码添加点击事件函数相关的知识,希望对你有一定的参考价值。
const {ccclass, property} = cc._decorator;
@ccclass
export default class TestButton extends cc.Component{
private _button:cc.Button=null;
protected onLoad():void{
super.onLoad();
this._button=this.getComponent(cc.Button);
var eventHandler=new cc.Component.EventHandler();
eventHandler.target=this.node;
eventHandler.component="TestButton";
eventHandler.handler="onClick";
eventHandler.customEventData="my data";
this._button.clickEvents.push(eventHandler);
}
private onClick(event:cc.Event.EventTouch,customData:any):void{
}
}
以上是关于CocosCreator 代码添加点击事件函数的主要内容,如果未能解决你的问题,请参考以下文章