[]Dialog中编辑的动画如何控制?

在Dialog中编辑的动画,怎样用JS代码控制其暂停、开始和重新开始?能不能指定从第几帧开始播放? 请给一个实例或一段代码,本人小白一名,文档翻遍了,没找到这方面的资料
已邀请:

cuixueying

赞同来自:

function TestUI()
{
var Event = laya.events.Event;
TestUI.super(this);
this.ani1.play(15);//play的第一个参数是从第几帧开始播放
Laya.stage.on(Laya.Event.CLICK,this,onClick);
}
Laya.class(TestUI, "TestUI", TestPageUI);

function onClick()
{
this.ani1.stop();//停止播放
this.ani1.index=30;//index为帧索引,停止到第几帧
}

要回复问题请先

商务合作
商务合作