大约有 1,601 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0050 秒)
Laya_社区(1446) Laya2.0_文档(45) Laya3.0_api(26) Laya_示例(21) Laya2.0_api(18) laya_api(17) Laya2.0_示例(16) Laya3.0_文档(12)
...ssage callback function 2、null is not an object (evaluating 'this._audio.play');at audioContext.onended callback function 3、Cannot read property 'play' of null;at audioContext.onended callback function 2、3应该是一样的 layaide 版本 1.7.16 微信开发者工具 版本 1.02.1807200 2018-0...
来源: Laya_社区 发布时间: 20180728
...并且设置不要重复播放 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 = views.getChildByNam...
来源: Laya_社区 发布时间: 20170223
... light.loadAnimation("ani/thunder.ani"); Laya.stage.addChild(light); light.play(0, true); 用light.frames获取结果为null,不行 2017-08-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来...
来源: Laya_社区 发布时间: 20170803
...复 NilZ 赞同来自: 因为你在动画事件处理函数中,调用了play导致playStateInfo._playEventIndex错乱了。这是属于引擎没有考虑到位的地方,我们正在进行修复,不过单从项目角度你可以进行规避,比如在事件触发之后的下一帧进行play等...
来源: Laya_社区 发布时间: 20200309
...ads.length) var animsf :Laya.Animation = bads[0] as Laya.Animation; animsf.play(); } 这样用会报错 2017-03-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: Playerdata1 接收参数...
来源: Laya_社区 发布时间: 20170309
...动框的宽度 */ defaultX = 1110 /** 动画是否出于播放状态 */ isPlayIng:boolean = false /** 空格 */ private space:string = "<span> </span>" constructor() { super() this.width = 1200 this.height = 55 this.visible = false this...
来源: Laya_社区 发布时间: 20180314
...度开发者工具上报错 这是laya.core.js中报的错 channel=tSound.play(startTime,loops); 调试查看tSound应该是个二进制数据, 并没有play方法, 是我有什么地方遗漏了吗?很懵逼的说 附件 : --> 2019-07-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...
来源: Laya_社区 发布时间: 20190709
...elentAutio: HTMLAudioElement; constructor(){ super(); this.btn_play.on(Laya.Event.CLICK, this, this.onPlay); this.elentAutio = <HTMLAudioElement>document.createElement('audio'); this.elentAutio.src="res/10.mp3"; } onPlay():void{ this.elentAutio.play(); } 由于...
来源: Laya_社区 发布时间: 20170217
... var k:Animation=new Animation(); k.loadAtlas("res/atlas/temp1.json"); k.play(0,true,'ani2') 结果他是全部动画 ani2 ani3接着 一起播放 没有单独播放 ani2 附件 : --> 2017-02-22 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内...
来源: Laya_社区 发布时间: 20170222