著名的应用程序使用 cocos2d 吗?
我是法国人,请原谅我糟糕的英语。
我想知道 Tiny Wings、Angry Birds 和其他类似的优秀应用程序是否在其部分或全部游戏中使用 cocos2D。我想使用粒子设计器,并且我们必须将它与 cocos2d 一起使用,但我不喜欢 cocos2d 的图像出现在 App Store 上我的应用程序上。
I'm French so excuse my poor English.
I'd like to know is if Tiny Wings, Angry Birds, and other great applications like that use cocos2D, for some or all of their game. I want to use the particle designer and we must use it with cocos2d, but I don't like the fact that the image of cocos2d appears on my application on the App Store.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Tiny Wings、Angry Birds、Mega Jump、Trainyard...仅举几例,使用 cocos2d、box2d 或两者都使用。
来源:我正在等待发布的一本 cocos2d 书籍的描述。
另外...您可以轻松更改应用程序的默认加载图像。
-- 编辑 --
要从应用程序中删除帧速率,请从应用程序委托文件中删除以下代码行:
或者,您可以将该行保留在那里,但将其设置为
NO
。Tiny Wings, Angry Birds, Mega Jump, Trainyard... to name a few, use cocos2d, box2d, or both.
Source: A description of a cocos2d book that I'm waiting to be released.
Also... you can change the default loading image of the application... easily.
-- EDIT --
To remove the frame rate from your application, remove the following line of code from your app delegate file:
Or, you can leave the line there but set it to
NO
.