大约有 2 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0018 秒)
...参考代码如下: …… //循环播放_sound _sound.play(0); //失去舞台焦点(切出游戏)的处理 Laya.stage.on(Laya.Event.BLUR, this, () => { _sound.stop(); }); //获得舞台焦点(切回游戏)的处理 Laya.stage.on(Laya.Event.FOCUS, this, () => { _sound.play(0); }); ...
来源: Laya3.0_文档 发布时间: 20241014
...执行一次 onEnable 组件被启用后执行,比如节点被添加到舞台后 onStart 第一次执行onUpdate之前执行,只会执行一次 onUpdate 每帧更新时执行,尽量不要在这里写大循环逻辑或者使用getComponent方法 onLateUpdate 每帧更新时执行,在onUpdate...
来源: Laya3.0_文档 发布时间: 20241014