iPhone cocas2d 游戏:播放声音

发布于 2024-11-01 16:23:06 字数 373 浏览 0 评论 0原文

我也面临着同样的问题..通过做这个背景音乐停止,但我的情况是我想播放另一种声音一段时间..就像爆炸声,然后再次播放旧声音..但是当我执行这种类型的代码时 [[SimpleAudioEngine共享引擎] stopBackgroundMusic]; [[SimpleAudioEngine共享引擎] playBackgroundMusic:@"blast.wav"循环:TRUE]; [[SimpleAudioEngine共享引擎] stopBackgroundMusic]; [[SimpleAudioEngine共享引擎] playBackgroundMusic:@"background.wav"循环:TRUE]; 我爆炸声音不播放...背景声音只是停止一秒钟..然后再次播放..需要帮助

i am also facing same problem .. by doing this background music stop but i my case i want to play another sound for a while .. like a blast sound and then again play old sound .. but whn i do this type of code
[[SimpleAudioEngine sharedEngine] stopBackgroundMusic];
[[SimpleAudioEngine sharedEngine] playBackgroundMusic:@"blast.wav" loop:TRUE];
[[SimpleAudioEngine sharedEngine] stopBackgroundMusic];
[[SimpleAudioEngine sharedEngine] playBackgroundMusic:@"background.wav" loop:TRUE];
i blast sound not play ...background sound just stop for a sec .. and thn playing again .. need help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撞了怀 2024-11-08 16:23:06
[[SimpleAudioEngine sharedEngine] stopBackgroundMusic];

停止背景音乐后,您可以使用playEffect。

 [[SimpleAudioEngine sharedEngine] playEffect:@"blast.wav"];
[[SimpleAudioEngine sharedEngine] stopBackgroundMusic];

After Stopping background music.you can use playEffect.

 [[SimpleAudioEngine sharedEngine] playEffect:@"blast.wav"];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文