Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installation Steps of Cocos2D for MAC?

I want to learn about the Cocos2d and I have read more the 3 tutorials on Cocos2D but still I don't have any clearcut idea that how to install Cocos2D on MAC. If somebody knows the proper installation steps of Coco2D, than please give me so that i could start with Cocos2D.

like image 651
RAMAN RANA Avatar asked Mar 21 '11 10:03

RAMAN RANA


People also ask

What is the difference between Cocos2d and Cocos creator?

Cocos2d-x runs using C++, with forks for developers to use JavaScript or Lua as the scripting language, and comes without a game editor. Cocos Creator runs on both JavaScript and TypeScript (with some logic realized with C++) and comes with a free editor to help you build your game.


1 Answers

Try following Ray Wenderlich's tutorial:

http://www.raywenderlich.com/352/how-to-make-a-simple-iphone-game-with-cocos2d-tutorial

You'll find you need to visit a URL like https://github.com/cocos2d/cocos2d-iphone/tarball/release-1.0.0-beta-reorder-sprite to get the source, then unzip it wherever you like. Then, as Wenderlich says, you 'Open up a Terminal window to the directory you downloaded Cocos2D to, and enter the following command: ./install_template.sh'.

That's the installation process. When you open XCode, you'll see some new templates to create projects from. The rest of Wenderlich's tutorial shows you how to create a simple Cocos2D game.

like image 193
Tommy Herbert Avatar answered Oct 15 '22 09:10

Tommy Herbert