大约有 132 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0061 秒)
Laya_社区(61) Laya3.0_api(17) laya_api(15) Laya2.0_api(15) Laya2.0_文档(7) Laya2.0_示例(7) Laya_示例(7) Laya3.0_文档(3)
...= Laya.stage.height / 2; ufo.play("ludo_ufo_kaishi", false); ufo.once(Laya.Event.STOPPED, this, () => { ufo.play("ludo_ufo_feixing", true); }); ufo.on(Laya.Event.LABEL, this, (e) => { if (e.name == "xiaoshi") { ufo.offAllCaller(this); // ufo.removeSelf(); } }); })); } genSpine(url, hand...
来源: Laya_社区 发布时间: 20220530
...法结束循环 问题原因: 在源码中,play方法中添加了Laya.Event.DISPLAY监听函数:_onDisplay 而_onDisplay函数中,又调用了play()方法,而且是没带参数!!! 这样导致在play方法中,传入的to参数无效!!! 另外分享下自己的修改方...
来源: Laya_社区 发布时间: 20201211
...l Classes | Index | Frames No Frames MovieClipProperties | Methods | Events Packagelaya.ani.swfClasspublic class MovieClipInheritanceMovieClip Sprite Node EventDispatcher Object MovieClip 用于播放经过工具处理后的 swf 动画。 Public Properties Hide Inherited Public Properties Sho...
来源: Laya2.0_api 发布时间: 20190513
...onstructor() { super(); this.once(Laya.Event.DISPLAY, this, this.onCreate); this.once(Laya.Event.UNDISPLAY, this, this.onDestroy); } /** * 加入场景 */ protected onCreate(): void ...
来源: Laya_社区 发布时间: 20181114
...) { bone.skeleton.scaleX = -1; } bone.addChild(skeleton); skeleton.on(Laya.Event.STOPPED, this, this.playCom, [bone]); skeleton.play(bone.direction, false); 播放方式就和官方的一样 或者说是不是不支持叠加模式啊? 附件 : --> 2017-12-25 添加评论 免费帖 --> 分...
来源: Laya_社区 发布时间: 20171225
...函数内,物体的坐标轴错乱 我在动画播放完的函数_ani.on(Event.STOPPED,this,ruturnRoad)的ruturnRoad方法内移动一个已经创建好的物体,发现这个物体的坐标轴错乱,原来X轴变为Z轴,原来Z轴变为X轴,物体坐标原来的坐标也改变了 2017-12-2...
来源: Laya_社区 发布时间: 20171221
...是我监听动画完成并且设置不要重复播放 this.mArmature.on(Event.STOPPED, this, this.playStanding); this.mArmature.play("standing",false);//设置为false 不重复播放动画播放完成后在播放一次,依次循环…… 这样就没有抖动了 附件 : --> 2019-05-21 添加评...
来源: Laya_社区 发布时间: 20190521
...; addChild(views); views.ani1.on(Event.COMPLETE,this,playStop); views.ani1.play(); 接着在时间中停止,然后画面就空了,难道不是停到动画的最后一帧吗? views.ani1.stop(); var bt:Sprite =...
来源: Laya_社区 发布时间: 20170223
... this.skebqb.play(4, false); this.skebqb.on(Laya.Event.STOPPED,this,this.changeSkin); this.owner.addChild(this.skebqb); this.skebqb.pos(500, 600); this.changeSkin(); } changeSkin(){ this.skeb...
来源: Laya_社区 发布时间: 20201231
...is.mFactory = new Laya.Templet(); this.mFactory.on(Laya.Event.COMPLETE, this, this.parseComplete, [aniMode]); this.mFactory.loadAni(url); } private parseComplete(aniMode: number, fac: Laya.Templet): void { this.mArmature ...
来源: Laya_社区 发布时间: 20200618