我使用cocos2d-x开发了一款游戏。我对背景音乐有疑问。当我按下键菜单时,它会暂停,我重启,背景音乐没有播放。 我在appdelegate.cpp中使用以下代码
applicationDidEnterBackground()
{
CocosDenshion::SimpleAudioEngine::sharedEngine()->pauseBackgroundMusic();
}
applicationDidEnterforeground()
{
CocosDenshion::SimpleAudioEngine::sharedEngine()->resumeBackgroundMusic();
}