码迷,mamicode.com
首页 > 其他好文 > 详细

CocosCreator 代码添加点击事件函数

时间:2020-05-25 13:55:32      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:ext   点击事件   this   class   load()   ons   export   click   handler   

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 代码添加点击事件函数

标签:ext   点击事件   this   class   load()   ons   export   click   handler   

原文地址:https://www.cnblogs.com/kingBook/p/12956437.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!