大约有 55 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0031 秒)
需要用SoundChannel的play()方法,报错说不存在play()方法? 附件 : --> 2017-11-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 wudi199553 赞同来自: zyz1208 如果要播放声音使用sound...
来源: Laya_社区 发布时间: 20171103
... value: boolean Returns void Methods Static addChannel addChannel(channel: SoundChannel): void Defined in laya/media/SoundManager.ts:96 添加播放的声音实例。 Parameters channel: SoundChannel SoundChannel 对象。 Returns void Static destroySound destroySound(url: string): void Defined in l...
来源: Laya3.0_api 发布时间: 20231115
app 上使用 soundchannel.pause() 暂停音效音乐,用 resume() 播放都会从头开始播放 pc 没有问题 ,但是打包apk上手机播放就有问题了。每次pause后都是从头开始播放 layanative 用的2.5, 引擎也是2.5 let sound:Laya.SoundChannel =...
来源: Laya_社区 发布时间: 20200921
...移除。 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
...自动选择。 * @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
...来自: SoundManager.playSound或者 SoundManager.playMusic会返回一个SoundChannel实例。你可以声明一个变量来接收它,然后通过SoundChannel来控制播放、停止、暂停。具体代码如下所示: var soundC:SoundChannel = SoundManager.playSound("url"); //播放 soundC.p...
来源: Laya_社区 发布时间: 20180329
... 1 个回复 w1114367261 赞同来自: playSound声音播放会返回一个SoundChannel你可以根据这个对声音进行控制soundChannel.position是获取当前播放时间 .duration是总时间 2018-04-12 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题...
来源: Laya_社区 发布时间: 20180412
...Monica - 知识达人 赞同来自: SoundManager.playMusic()会返回一个SoundChannel实例,你自己定义一个变量。然后拿这个变量去调暂停的方法。 你可以先看下SoundChannel的API 2017-11-01 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回...
来源: Laya_社区 发布时间: 20171101
...y[] Returns EventDispatcher play play(startTime?: number, loops?: number): SoundChannel Defined in laya/media/Sound.ts:24 播放声音。 Parameters Default value startTime: number = 0 开始时间,单位秒 Default value loops: number = 0 循环次数,0表示一直循环 Returns SoundChannel 声道...
来源: Laya3.0_api 发布时间: 20231115