电脑桌面
添加小米粒文库到电脑桌面
安装后可以在桌面快捷访问

cocos2d+programming+guide引擎,objectivec开发,iphone开发

cocos2d+programming+guide引擎,objectivec开发,iphone开发_第1页
1/63
cocos2d+programming+guide引擎,objectivec开发,iphone开发_第2页
2/63
cocos2d+programming+guide引擎,objectivec开发,iphone开发_第3页
3/63
1 CocosDenshion 1.1. CocosDenshion Cookbook Some code “recipes” for working with CocosDenshion 1.1.1. SimpleAudioEngine One nice thing about SimpleAudioEngine is that it requires minimal set up. It makes intelligent choices for you and uses lazy initialization which greatly simplifies adding sound to your project. Once you have CocosDenshion added to your project as outlined in the FAQ then simply import “SimpleAudioEngine.h” in files that require sound access and then you can use code like the following for playing sound effects and music.  Play a sound: Play the sound stored in the file mysound.wav. [[SimpleAudioEngine sharedEngine] playEffect:@"mysound.wav"];  Play some background music: Play an mp3 file named somemusic.mp3 in an endless loop. [[SimpleAudioEngine sharedEngine] playBackgroundMusic:@ "somemusic.mp3"];  Pause the background music: [[SimpleAudioEngine sharedEngine] pauseBackgroundMusic];  Play background music from the start again: Just call playBackgroundMusic again. If the file matches the currently playing music then the background music will be restarted from the beginning.  [[SimpleAudioEngine sharedEngine] playBackgroundMusic:@ "somemusic.mp3"];//play background music 1.1.2 CDAu dioManager  Set background music volume: Set the volume property of the backgroundMusic AVAudioPlayer object directly. Range is 0.0 for off to 1.0 for maximum volume. [[CDAudioManager sharedManager].backgroundMusic.volume = 1.0f;  Get notified when the background music stops: Register a method/selector to get notified when background music stops. Note that music that is set up to loop repeatedly will never complete, you do not get a notification for each loop. [[CDAudioManager sharedManager] setBackgroundMusicCompletio...

1、当您付费下载文档后,您只拥有了使用权限,并不意味着购买了版权,文档只能用于自身使用,不得用于其他商业用途(如 [转卖]进行直接盈利或[编辑后售卖]进行间接盈利)。
2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。
3、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。

碎片内容

cocos2d+programming+guide引擎,objectivec开发,iphone开发

确认删除?
VIP
微信客服
  • 扫码咨询
会员Q群
  • 会员专属群点击这里加入QQ群
客服邮箱
回到顶部