axmol/tools/tolua
samuele3hu f4b57511b0 Update cocos2dx_3d.ini and cocos2dx.ini for generating Lua bindings code to support CC_CONSTRUCTOR_ACCESS equal to public 2015-04-30 17:18:12 +08:00
..
README.mdown Update README.md in tools/tolua 2014-05-28 09:43:48 +08:00
cocos2dx.ini Update cocos2dx_3d.ini and cocos2dx.ini for generating Lua bindings code to support CC_CONSTRUCTOR_ACCESS equal to public 2015-04-30 17:18:12 +08:00
cocos2dx_3d.ini Update cocos2dx_3d.ini and cocos2dx.ini for generating Lua bindings code to support CC_CONSTRUCTOR_ACCESS equal to public 2015-04-30 17:18:12 +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 synchronize the related ActionTimeline test cases of Lua refer to the cpp-tests 2015-04-13 16:29:44 +08:00
cocos2dx_experimental.ini Add Lua-bindings for SpritePolygon and related test case 2015-04-28 18:19:57 +08:00
cocos2dx_experimental_video.ini Remove useless classes configuration for Lua binding 2015-04-14 15:02:25 +08:00
cocos2dx_experimental_webview.ini Fix the compile error on the win32 2015-04-20 11:46:48 +08:00
cocos2dx_extension.ini Remove useless configure for bindings-generator of Lua 2015-03-30 15:48:47 +08:00
cocos2dx_physics.ini Update lua bindings ini config files 2014-09-10 14:18:21 +08:00
cocos2dx_spine.ini issue #9820:Inconsistent :setBlendFunc(...) function binding for Sprite and LabelBMFont classes 2015-01-14 13:51:09 +08:00
cocos2dx_studio.ini Fix the bindings-generator error and add related Action Timeline test case. 2015-04-12 22:20:53 +08:00
cocos2dx_ui.ini Remove useless configure for bindings-generator of Lua 2015-03-30 15:48:47 +08:00
genbindings.py Add Lua bindings for WebView and related test case 2015-04-17 14:08:47 +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