大约有 246 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0040 秒)
Laya_社区(154) Laya3.0_api(22) laya_api(21) Laya2.0_api(16) Laya2.0_文档(13) Laya2.0_示例(8) Laya_示例(8) Laya3.0_文档(4)
...没必要销毁): SoundManager.playMusic方法中_bgMusic移到channel.stop下面。 SoundManager.disposeSoundLater方法开头if(url == SoundManager._bgMusic) return; 2.存背景音乐的_audioCache的key和其他的集合中的背景音乐用同一个key,改变内容前做对象清理,改...
来源: Laya_社区 发布时间: 20210112
...出游戏)的处理 Laya.stage.on(Laya.Event.BLUR, this, () => { _sound.stop(); }); //获得舞台焦点(切回游戏)的处理 Laya.stage.on(Laya.Event.FOCUS, this, () => { _sound.play(0); }); …… ``` ### 六、音乐与音效播放的完整示例 该示例的完整代码地址为:[https...
来源: Laya2.0_文档 发布时间: 20210715
...出游戏)的处理 Laya.stage.on(Laya.Event.BLUR, this, () => { _sound.stop(); }); //获得舞台焦点(切回游戏)的处理 Laya.stage.on(Laya.Event.FOCUS, this, () => { _sound.play(0); }); …… ``` ### 六、音乐与音效播放的完整示例 该示例的完整代码地址为:[https...
来源: Laya2.0_文档 发布时间: 20210714
...发者有两种方式,来避免。 一种是在入口文件中,将autoStopMusic设置为false。 ```typescript …… //失去焦点后是否自动停止背景音乐。false不自动停止,一直播。true是自动停止 Laya.SoundManager.autoStopMusic = false; …… ``` 如果不设置这个...
来源: Laya2.0_文档 发布时间: 20210715
...了。 提示了以下错误 ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of apps that use UIWebView APIs . See https://developer.apple.com/do ... bview for more information。 希望官方尽快修复,不然之后就无法上架了 2019-09-10 添加评论 免费帖 ...
来源: Laya_社区 发布时间: 20190910
....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, handler: L...
来源: Laya_社区 发布时间: 20220530
...发者有两种方式,来避免。 一种是在入口文件中,将autoStopMusic设置为false。 …… //失去焦点后是否自动停止背景音乐。false不自动停止,一直播。true是自动停止 Laya.SoundManager.autoStopMusic = false; …… 如果不设置这个,当失去焦点...
来源: Laya3.0_文档 发布时间: 20241014
...r.height / 2 + 100); this.skeleton.scale(0.5, 0.5); this.skeleton.on(Event.STOPPED, this, this.play) this.play(); } private onError(): void{ console.log("parse error"); } private play(): void { console.log("1111111111"); if(++this.index >= this.skeleton.getAnimNum()) { this.index = 0 } this.skeleton...
来源: Laya2.0_文档 发布时间: 20210715
...his.isDown = false; this.isUp = false; this.isMove = false; this.isMode = "stop"; //移除弹起和移动事件 this.layer.off(Laya.Event.MOUSE_UP, this, this.upFun); this.layer.off(Laya.Event.MOUSE_MOVE, this, this.moveFun); Laya.Tween.to(this.moveKey, { x: this.moveKey.mode.x, y: this.moveKey.mode...
来源: Laya_社区 发布时间: 20171030
...lean = false, ratio:Number = 0.92):void 开始拖动此对象。 Sprite stop():void 停止 Particle2D stopDrag():void停止拖动此对象。Sprite timerLoop(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true, jumpFrame:Boolean = false):void 定时重复执行...
来源: laya_api 发布时间: 20170929