大约有 11 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0025 秒)
tweenline label事件诡异 this.timeLine.addLabel("rotate1",0).to(this.godContaner,{rotation:-5},200,null,0) .addLabel("rotate2",0).to(this.godContaner,{rotation:0},200,null,0); this.timeLine.play(0,true); this.timeLine.on("label", this, function(label){ console.log(label) }); 两个问题 1 为...
来源: Laya_社区 发布时间: 20170310
...nLoaded); Laya.stage.addChild(mc); } private function onLoaded():void { mc.addLabel("label01",19); mc.addLabel("label02",39); mc.addLabel("label03",59); mc.on(Event.LABEL,this,onLabel);//运行到对应的帧数,会触发对应的标签 } private function onLabel(e:String):void//e: 返回一个Str...
来源: Laya_社区 发布时间: 20170705
...amp;group=Tween&name=TimeLine function createTimerLine() { timeLine.addLabel("turnRight",0).to(target,{x:450, y:100, scaleX:0.5, scaleY:0.5},2000,null,0) .addLabel("turnDown",0).to(target,{x:450, y:300, scaleX:0.2, scaleY:1, alpha:1},2000,null,0) .addLabel("turnLeft",0).to(target,{x:100, y:30...
来源: Laya_社区 发布时间: 20180718
...HMain.max.js:5472) private function createTimerLine():void { timeLine.addLabel("turnRight",0).to(target,{x:450, y:100, scaleX:0.5, scaleY:0.5},2000,null,0) .addLabel("turnDown",0).to(target,{x:450, y:300, scaleX:0.2, scaleY:1, alpha:1},2000,null,0) .addLabel("turnLeft",0).to(target,{x:100, y:30...
来源: Laya_社区 发布时间: 20170327
...复 Laya_XS 赞同来自: 这是animiation的帧标签事件,这是你用addLabel方法添加的标签,然后监听指定的标签即可! 2017-03-19 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 相关问题 两个对象new了一个相同...
来源: Laya_社区 发布时间: 20170319
...e:TimeLine=new TimeLine(); timeLine.on(Event.LABEL,this,onLabel); timeLine.addLabel("A",0).to(sp,{rotation:360},700) .addLabel("B",0).to(sp,{scaleY:0.7},200) .addLabel("C",0).to(sp,{scaleY:1},200); timeLine.play(0,false); } private function onLabel(text:String):void { trace(text); }应该是你的...
来源: Laya_社区 发布时间: 20161229
...事件的当前者 mc.on(Event.LOADED,mc,onmcloaded); MovieClip(e.target).addLabel("label01",19); MovieClip(e.currenttarget).addLabel("label01",19); 2017-08-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 4 个回复 shines...
来源: Laya_社区 发布时间: 20170809
图集动画结束回调有延迟 this.ded.addLabel("animOver",9); this.ded.on(Laya.Event.LABEL, this, this.onHitOver); this.ded.on(Laya.Event.COMPLETE, this, this.onHitOver); 两种方法都会有延迟,不能100%执行 2018-11-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...
来源: Laya_社区 发布时间: 20181108
...== 'lightDottedActive') { child.visible = true; child.alpha = 0; timeline .addLabel('lightDotted', 0) .to(child, { alpha: 1 }, 200, Ease.linearIn) .to(child, { alpha: 0 }, 200, Ease.linearIn) } } timeline.play(0, true); timeline.on(Event.COMPLETE, this, function () { count++; if (count === 2) { time...
来源: Laya_社区 发布时间: 20170405
... } // anifish1.addLabel(ada,145) // function ada(){ // alert('sadasdasdsa') // } // alert(anifish2.currentFrameTim...
来源: Laya_社区 发布时间: 20170927