2

Are cocos2d-iphone and cocos2d-Android the same thing? in other words, can I make a game once and deploy it to both devices?

Also, for Android, "overall" what is the best isometric game engine (cocos2d or andengine)?

I want make an isometric mutliplayer game that can run on both Android, iPhone and web. I understand that might be possible with the two engines listed, but I need to start somewhere. I took a look at Unity but I think it will be easier to start with 2D vs 3D.

James Webster
  • 31,873
  • 11
  • 70
  • 114
Josh
  • 819
  • 1
  • 14
  • 30
  • http://stackoverflow.com/questions/10959337/cocos-vs-andengine-for-android/15900159#15900159 might be helpful to you !! – user2416728 Jun 05 '13 at 05:28

1 Answers1

3

Are cocos2d-iphone and cocos2d-Android the same thing? in other words, can I make a game once and deploy it to both devices?

No, they are not the same. You certainly can't deploy from one to the other. Have a look at Cocos2d-X, I don't know how it works, but it's designed to be cross platform.

Also, for Android, "overall" what is the best isometric game engine (cocos2d or andengine)?

Our office creates both iPhone and android games, the iPhone department uses Cocos2d, the Android department uses AndEngine. This is a subjective question though, you decide which is 'better'.

With regard to Unity, it provides a powerful basis for creating games, but from what I've heard, they quickly become large apps and will likely hit the 20MB limit for downloading apps on WWAN (at least in UK, not sure on other countries), quickly. Consider this if when considering Unity.

James Webster
  • 31,873
  • 11
  • 70
  • 114
  • I like the look of cocos2d-x, do you know if it supports isometric maps? It appears that it's just a converted version of the cocos2d-iphone, so I think it should.... – Josh Oct 06 '11 at 20:09
  • From what I know, it _is_ cocos2d-iphone, but a little behind. Isometric maps were pretty early feature though so I expect they've been converted. – James Webster Oct 07 '11 at 00:15