在音效实例中停止音乐的另一种方法
我使用了音效实例来播放背景音乐。但我无法阻止声音。我使用 Common 类来播放和停止声音。
有没有办法在使用音效实例播放时停止音乐?
I used soundeffect instance to play the background music. But I'm not able to stop the sound. I used Common class to play and stop sounds.
Is there anyway to stop music while playing using soundeffectinstance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SoundEffect
是一劳永逸的:您需要创建一个
SoundEffectInstance
,然后才能使用 SoundEffectInstance.Stop() ?SoundEffect
is fire-and forget:You need to create a
SoundEffectInstance
instead, then you can use SoundEffectInstance.Stop() ?