大约有 91 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0030 秒)
...otianhk SoundManager.playSound或者 SoundManager.playMusic会返回一个SoundChannel实例。你可以声明一个变量来接收它,然后通过SoundChannel来控制播放、停止、暂停。具体代码如下所示: var soundC:SoundChannel = SoundManager.playSound("url"); //播放 soundC.p...
来源: Laya_社区 发布时间: 20180312
...移除。 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
...来自: SoundManager.playSound或者 SoundManager.playMusic会返回一个SoundChannel实例。你可以声明一个变量来接收它,然后通过SoundChannel来控制播放、停止、暂停。具体代码如下所示: var soundC:SoundChannel = SoundManager.playSound("url"); //播放 soundC.p...
来源: Laya_社区 发布时间: 20180329
...自动选择。 * @param startTime 声音播放起始时间。 * @return SoundChannel对象,通过此对象可以对声音进行控制,以及获取声音信息。 */ static playSound(url: string, loops?: number, soundClass?: any, startTime?: number) { return new Promise((resolve, reject) => {...
来源: Laya_社区 发布时间: 20180124
...移除。 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
... 1 个回复 w1114367261 赞同来自: playSound声音播放会返回一个SoundChannel你可以根据这个对声音进行控制soundChannel.position是获取当前播放时间 .duration是总时间 2018-04-12 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题...
来源: Laya_社区 发布时间: 20180412
...使用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
...微博 QZONE 微信 fool_tiger 赞同来自: 嗯嗯,已经解决了,用SoundChannel的volume属性设置就有效了,因为声音是用SoundChannel播放的 2018-04-26 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 fool_tiger 相...
来源: Laya_社区 发布时间: 20180426
...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
...Monica - 知识达人 赞同来自: SoundManager.playMusic()会返回一个SoundChannel实例,你自己定义一个变量。然后拿这个变量去调暂停的方法。 你可以先看下SoundChannel的API 2017-11-01 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回...
来源: Laya_社区 发布时间: 20171101