Cocos2d 播放音效

Cocos2D对音乐/音效播放的封装已经很好了,下边是例子:

定义2个文件:

[cpp]  view plain copy
  1. #define MUSIC_FILE        "LOLBgMusic.mp3"  
  2. #define EFFECT_FILE      "Attack.wav"  

在初始化的时候预加载音乐/音效文件:

[cpp]  view plain copy
  1. //预加载  
  2.     CocosDenshion::SimpleAudioEngine::sharedEngine()->preloadBackgroundMusic(MUSIC_FILE);  
  3.     CocosDenshion::SimpleAudioEngine::sharedEngine()->preloadEffect( EFFECT_FILE );  
  4.     //设置音量  
  5.     CocosDenshion::SimpleAudioEngine::sharedEngine()->setEffectsVolume(0.5);  
  6.     CocosDenshion::SimpleAudioEngine::sharedEngine()->setBackgroundMusicVolume(0.5);  

播放:

[cpp]  view plain copy
  1. //循环播放背景音乐,  
  2. CocosDenshion::SimpleAudioEngine::sharedEngine()->playBackgroundMusic(MUSIC_FILE,true);  
[cpp]  view plain copy
  1. //播放音效  
  2. CocosDenshion::SimpleAudioEngine::sharedEngine()->playEffect(EFFECT_FILE);  

其他相关函数:

[cpp]  view plain copy
  1. // stop background music  
  2. SimpleAudioEngine::sharedEngine()->stopBackgroundMusic();  
  3.  // pause background music  
  4.  SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();  
  5. // resume background music  
  6. SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();  
  7. // rewind background music  
  8. SimpleAudioEngine::sharedEngine()->rewindBackgroundMusic();  
  9. // is background music playing  
  10. SimpleAudioEngine::sharedEngine()->isBackgroundMusicPlaying()  
  11. // add bakcground music volume  
  12. SimpleAudioEngine::sharedEngine()->setBackgroundMusicVolume(SimpleAudioEngine::sharedEngine()->getBackgroundMusicVolume() + 0.1f);  
  13.   
  14.   
  15. SimpleAudioEngine::sharedEngine()->pauseEffect(m_nSoundId);  
  16. SimpleAudioEngine::sharedEngine()->resumeEffect(m_nSoundId);  
  17. SimpleAudioEngine::sharedEngine()->pauseAllEffects();  
  18. SimpleAudioEngine::sharedEngine()->resumeAllEffects();  
  19. SimpleAudioEngine::sharedEngine()->stopAllEffects();  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值