axmol/tools/tolua
minggo 8326ed6535 add physics component 2015-09-08 09:54:01 +08:00
..
README.mdown Update README.md in tools/tolua 2014-05-28 09:43:48 +08:00
cocos2dx.ini don't generate bindings for `getCocos2dThreadId` 2015-08-13 11:18:51 -07:00
cocos2dx_3d.ini ignore Animate getKeyFrameUserInfo 2015-07-20 11:49:30 +08:00
cocos2dx_audioengine.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_cocosbuilder.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_cocosdenshion.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_controller.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_csloader.ini Fix lua binding 2015-07-27 21:24:52 +08:00
cocos2dx_experimental.ini Update the Lua binding about the Polygon and update the test case. 2015-06-11 14:38:38 +08:00
cocos2dx_experimental_video.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_experimental_webview.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_extension.ini libcurl.h not included in the header to avoid... 2015-08-13 19:28:38 -07:00
cocos2dx_navmesh.ini Add Lua-bindings for NavMesh 2015-06-02 18:37:57 +08:00
cocos2dx_physics.ini add physics component 2015-09-08 09:54:01 +08:00
cocos2dx_physics3d.ini skip init funciton in lua physics3d.ini 2015-08-01 18:30:06 +08:00
cocos2dx_spine.ini fix binding generator 2015-05-07 07:05:23 +08:00
cocos2dx_studio.ini Merge branch 'v3.7.1' of https://github.com/cocos2d/cocos2d-x into v3 2015-08-02 22:28:27 +08:00
cocos2dx_ui.ini add missing ui test in Lua 2015-08-20 15:25:09 +08:00
genbindings.py Update the NavMesh test case 2015-06-17 09:49:31 +08:00

README.mdown

How to Use bindings-generator

On Windows:

On MAC:

  • The OSX 10.9 has a built-in python2.7 and if your os don't have python2.7 then use Homebrew to install the python and use pip install the python dependencies.
	brew install python
  • Install python dependices by pip.
    sudo easy_install pip
    sudo pip install PyYAML
	sudo pip install Cheetah
	export NDK_ROOT=/path/to/android-ndk-r9b
    ./genbindings.py

On Ubuntu Linux 12.04 64bit

  • Install python
	sudo apt-get install python2.7
  • Install python dependices by pip.
	sudo apt-get install python-pip
	sudo pip install PyYAML
	sudo pip install Cheetah
	export NDK_ROOT=/path/to/android-ndk-r9b
    ./genbindings.py