axmol/tools/tolua
minggo 3c1978fcc3 Merge pull request #9611 from super626/quaternion
Rotation With Quaternion
2014-12-30 10:09:08 +08:00
..
README.mdown Update README.md in tools/tolua 2014-05-28 09:43:48 +08:00
cocos2dx.ini skip Node::set/getRotationQuat 2014-12-25 14:55:43 +08:00
cocos2dx_3d.ini skip getMeshArrayByName 2014-10-29 10:38:13 +08:00
cocos2dx_audioengine.ini [LUA]Add New AudioEngine on window 2014-10-17 17:53:33 +08:00
cocos2dx_cocosbuilder.ini Update lua bindings ini config files 2014-09-10 14:18:21 +08:00
cocos2dx_cocosdenshion.ini Update lua bindings ini config files 2014-09-10 14:18:21 +08:00
cocos2dx_controller.ini Update lua bindings ini config files 2014-09-10 14:18:21 +08:00
cocos2dx_csloader.ini Merge branch 'v3' of https://github.com/2youyouo2/cocos2d-x into v3 2014-12-03 16:00:32 +08:00
cocos2dx_experimental.ini Update lua bindings ini config files 2014-09-10 14:18:21 +08:00
cocos2dx_experimental_video.ini Update lua bindings ini config files 2014-09-10 14:18:21 +08:00
cocos2dx_extension.ini Update the related AssetsManagerEx files and related project configure 2014-10-16 10:28:52 +08:00
cocos2dx_physics.ini Update lua bindings ini config files 2014-09-10 14:18:21 +08:00
cocos2dx_spine.ini Update lua bindings for Spine and related test case 2014-10-16 20:23:58 +08:00
cocos2dx_studio.ini update lua ini files 2014-11-26 15:56:51 +08:00
cocos2dx_ui.ini add ui::Editbox lua binding, deprecated cc.EditBox to ccui.EditBox 2014-09-12 17:07:06 +08:00
genbindings.py Add support to clang3.4 because of using the ndk-r10c 2014-12-01 11:15:56 +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