• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 91 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0030 秒)

21. 求教: soundManager如何停止正在播放的背景音乐 [ 81%]

...otianhk SoundManager.playSound或者 SoundManager.playMusic会返回一个SoundChannel实例。你可以声明一个变量来接收它,然后通过SoundChannel来控制播放、停止、暂停。具体代码如下所示: var soundC:SoundChannel = SoundManager.playSound("url"); //播放 soundC.p...

来源: Laya_社区 发布时间: 20180312

22. laya.media.Sound [ 81%]

...移除。 EventDispatcher  play(startTime:Number = 0, loops:Number = 0):SoundChannel 播放声音。 SoundProperty Detaildurationpropertyduration:Number  [read-only] 获取总时间。 Implementation     public function get duration():NumberMethod Detaildispose()method public function dispos...

来源: laya_api 发布时间: 20170929

23. 有没有可以暂停播放音乐的方法 [ 81%]

...来自: SoundManager.playSound或者 SoundManager.playMusic会返回一个SoundChannel实例。你可以声明一个变量来接收它,然后通过SoundChannel来控制播放、停止、暂停。具体代码如下所示: var soundC:SoundChannel = SoundManager.playSound("url"); //播放 soundC.p...

来源: Laya_社区 发布时间: 20180329

24. Laya.SoundManager.playSound()问题,任务不是当前标签停止播放,当任务回到当前标签页,不能恢复播放 [ 81%]

...自动选择。 * @param startTime 声音播放起始时间。 * @return SoundChannel对象,通过此对象可以对声音进行控制,以及获取声音信息。 */ static playSound(url: string, loops?: number, soundClass?: any, startTime?: number) { return new Promise((resolve, reject) => {...

来源: Laya_社区 发布时间: 20180124

25. laya.media.Sound [ 80%]

...移除。 EventDispatcher  play(startTime:Number = 0, loops:Number = 0):SoundChannel 播放声音。 SoundProperty Detaildurationpropertyduration:Number  [read-only] 获取总时间。 Implementation     public function get duration():NumberMethod Detaildispose()method public function dispos...

来源: Laya2.0_api 发布时间: 20190513

26. 怎么分段播放声音 [ 77%]

... 1 个回复 w1114367261 赞同来自: playSound声音播放会返回一个SoundChannel你可以根据这个对声音进行控制soundChannel.position是获取当前播放时间 .duration是总时间 2018-04-12 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题...

来源: Laya_社区 发布时间: 20180412

27. LayaFlash下如何对音量进行控制? [ 75%]

...使用SoundMixer.soundTransform.volum去设置音量,但是可以通过SoundChannel.soundTransform.volume去设置 示例如下: public function init(e:Event):void { var sound:Sound=new Sound(); sound.load(new URLRequest("xxx.xxx.xxx")); var sc:SoundChannel=sound.play(); var st:SoundTransfor...

来源: Laya_社区 发布时间: 20160311

28. 音量最大只能是1? [ 75%]

...微博 QZONE 微信 fool_tiger 赞同来自: 嗯嗯,已经解决了,用SoundChannel的volume属性设置就有效了,因为声音是用SoundChannel播放的 2018-04-26 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 fool_tiger 相...

来源: Laya_社区 发布时间: 20180426

29. 播放MP3格式的音效,设置音量为0,无效!! 依旧有声音。 [ 74%]

...0,无效!! 依旧有声音。 手机 ios 代码如下: (1)var SoundChannel = Laya.SoundManager.playSound(url, 1); SoundChannel.volume = 0; (2)Laya.SoundManager.playSound(url, 1); Laya.SoundManager.setSoundVolume(0); 两种方式都不起作用!! 2018-08-30 5 条评论 免费帖 -...

来源: Laya_社区 发布时间: 20180830

30. 求大佬们给萌新一个用as写音乐暂停继续播放的例子 [ 73%]

...Monica - 知识达人 赞同来自: SoundManager.playMusic()会返回一个SoundChannel实例,你自己定义一个变量。然后拿这个变量去调暂停的方法。 你可以先看下SoundChannel的API 2017-11-01 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回...

来源: Laya_社区 发布时间: 20171101