大约有 5 项符合查询结果, 库内数据总量为 31,560 项。 (搜索耗时: 0.0022 秒)
...用completeHandler继续播放下一个动画 this.mArmature.on(Laya.Event.STOPPED, this, this.completeHandler); this.play(); }); } private completeHandler(): void { this.play(); } //播放骨骼动画 private play(): void { //每次到下一个动画 this.mCurrIndex++; if (this.mCurrIndex >= thi...
来源: Laya3.0_文档 发布时间: 20251010
...发者有两种方式,来避免。 一种是在入口文件中,将autoStopMusic设置为false。 …… //失去焦点后是否自动停止背景音乐。false不自动停止,一直播。true是自动停止 Laya.SoundManager.autoStopMusic = false; …… 如果不设置这个,当失去焦点...
来源: Laya3.0_文档 发布时间: 20251010
...tchState(e: any = null): void { if (this.counter.isPlaying) { this.counter.stop(); this.currFrame = this.counter.index; this.controller.label = "播放"; } else { this.counter.play(); this.counter.index = this.currFrame; this.controller.label = "暂停"; } } } Copyright ©Layabox 2025 all right rese...
来源: Laya3.0_文档 发布时间: 20251010
...当前皮肤状态 //播放停止后执行逻辑 this.owner.on(Laya.Event.STOPPED, this, () => { // 通过三元运算符切换皮肤名称 currentSkin = currentSkin === "full-skins/girl" ? "full-skins/girl-blue-cape" : "full-skins/girl"; this.spine.skinName = currentSkin; this.spine.play("idle",...
来源: Laya3.0_文档 发布时间: 20251128
...分析器的监控 结束这个性能分析器的监控记录需要点击Stop按钮(或左侧的红色实心圆圈)。如图5-2所示。 (图5-2) 查看CPU性能分析器的记录 结束监控后,在左侧 Profiles 下会列出一个监控结果文件,单击可以打开此监控结果文...
来源: Laya3.0_文档 发布时间: 20251010