iPhone cocas2d 游戏:播放声音
我也面临着同样的问题..通过做这个背景音乐停止,但我的情况是我想播放另一种声音一段时间..就像爆炸声,然后再次播放旧声音..但是当我执行这种类型的代码时 [[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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
停止背景音乐后,您可以使用playEffect。
After Stopping background music.you can use playEffect.