layabox 事件on的写法

Posted stevenchancxy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了layabox 事件on的写法相关的知识,希望对你有一定的参考价值。

class PushAdBtn extends ui.scene.pushAdBtnPanelUI
{
private img = [];
constructor()
{
super();

for(var i = 0; i < 4; i++)
{
this.img[i] = this.getChildByName("item"+i) as Laya.Image;
this.img[i].on(Laya.Event.CLICK, this, this.OnClick, [i]);//第四个传入的参数是个数组;
this.img[i].skin = "http://a.vigame.cn/xyx/lxgs_001.png"
this.img[i]["index"] = i;
}
}

OnClick(data)
{
console.log(data);//分别是0, 1 ,2 ,3;  
}
}


以上是关于layabox 事件on的写法的主要内容,如果未能解决你的问题,请参考以下文章

LayaBox---知识点

layabox环境搭建

LayaBox---背景拖动

LayaBox---背景拖动

layabox 3d 入手

Layabox Animator 动画播放层级问题