大约有 45 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0030 秒)
半透明的矩形鼠标穿透问题 //画矩形 this.addLabel = new Sprite(); this.addLabel.graphics.drawRect(0, 730, 1440, 170, "#000000"); this.addLabel.alpha = 0.6; this.addLabel.mousethrough = false; this.addLabel.mouseEnabled = true; sp.addChild(this.addLabel); 仍然能够点击下面的按...
来源: Laya_社区 发布时间: 20170726
timeLine的问题,怎么在多个addLabel之间改变图片skin? this.timeLine.addLabel("move",0).to(img,ani,500,null,0) .addLabel("ani1",500).to(img,ani1,220,null,0) .addLabel("ani2",220).to(img,ani2,220,null,0) 如上我创建了三个addLabel,但是我想在第一个addLabel完成了,就...
来源: Laya_社区 发布时间: 20180321
Animation.addLabel无效的问题 经测试Animation在使用序列帧创建的时候addLabel有效, 但是在使用.ani文件创建的时候addLabel无效,没有派发label事件。 不知道是我使用错误,还是本身就存在这个问题,望指点一二,感激不尽。 2018-02-27 ...
来源: Laya_社区 发布时间: 20180227
TimeLine.addLabel(label:String, offset:Number):TimeLine 亲测! 方法中第二个参数offset无效 如题,TimeLinde的addLabel方法的第二个参数offset没有实际效果! 1.addLabel方法中的第二个参数 offset 是什么意思 2.to方法中的 offset 又是什么意思,二者...
来源: Laya_社区 发布时间: 20170410
addLabel如何写能触发事件代码 mc.addLabel("hhh",100)? 这个怎么触发事件函数? mc.on("hhh",mc,stop)? 2017-08-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: htt...
来源: Laya_社区 发布时间: 20170809
swf addLabel事件使用 我在github上down了,引擎的实例用来学习使用方法。 想请教一个问题,我在看swf动画 我现在通过打印发现,这个swf动画总帧数为1,index为0. 【问题1:这么多动作怎么总帧数为1】 然后我在这个index【0】上用addL...
来源: Laya_社区 发布时间: 20161219
...ne = Laya.TimeLine, Event = Laya.Event; this.timeLine = new TimeLine(); // addLabel(label:String, offset:Number) offset: 标签事件相对于上个动画的偏移时间(单位:毫秒) this.timeLine.addLabel("turnRight", 0).to(this.target, {x:450, y:100, scaleX:0.5, scaleY:0.5}, 2000, null, 0) .ad...
来源: Laya2.0_示例 发布时间: 20241118
...ivot(55, 72); target.pos(100,100); } 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_示例 发布时间: 20241118
...的小鱼 赞同来自: var timeLine:TimeLine = new TimeLine(); timeLine.addLabel("turnup",0).to(this,{y:this.y + 20},20,null,0) .addLabel("turndown",0).to(this,{y:this.y - 40},20,null,0) .addLabel("turnup",0).to(this,{y:this.y + 400},20,null,0) .addLabel("turndown",0).to(this,{y:this.y - 40},20,nul...
来源: Laya_社区 发布时间: 20181016
...做动画会出问题?var timeline:TimeLine = new TimeLine(); timeline.addLabel("ymove", 0).to(aa, { y:img_tipOver["ey"] }, 500, Ease.cubicInOut) .addLabel("wait",0).to(aa,{},2000) .addLabel("alphas", 0).to(aa, { alpha:0 }, 300, Ease.cubicOut) .addLabel("grid", 0).to(bb, { x:0 }, 300, Ease.cubicIn...
来源: Laya_社区 发布时间: 20170308