Mute and Unmute Sound in Cocos2D
Hi, In order to mute and unmute sound in Cocos2D iPhone, use the following code.
Hi, In order to mute and unmute sound in Cocos2D iPhone, use the following code.
This simple code plays a music…….. [[SimpleAudioEngine sharedEngine] playBackgroundMusic:@”my_music.mp3″]; For stopping the music use this……. [[SimpleAudioEngine sharedEngine]stopBackgroundMusic]; To pause the music use this line of code….. [[SimpleAudioEngine sharedEngine] pauseBackgroundMusic];