axmol/tools/tojs
pandamicro dc607a1784 Merge pull request #13726 from jianglong0156/actionExtendSquash
support custom action, and rewrite update function
2015-09-09 10:25:56 +08:00
..
README.mdown Add js-bindings generator tools. 2015-04-14 11:01:07 +08:00
cocos2dx.ini support custom action, and rewrite update function 2015-09-09 10:08:07 +08:00
cocos2dx_3d.ini Merge pull request #12899 from super626/v3 2015-08-01 18:24:05 +08:00
cocos2dx_3d_ext.ini libcurl.h not included in the header to avoid... 2015-08-13 19:28:38 -07:00
cocos2dx_audioengine.ini Fix win32 project and add winrt support 2015-07-30 23:39:52 +08:00
cocos2dx_builder.ini Update the ini files for js binding 2015-05-07 13:00:57 +08:00
cocos2dx_experimental_video.ini add videoplayer config ini and fix the url bug 2015-05-29 11:10:39 +08:00
cocos2dx_experimental_webView.ini add webiew jsb code 2015-05-12 10:30:51 +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 Improve auto bindings for navmesh 2015-06-18 22:48:47 +08:00
cocos2dx_physics3d.ini add Physics3DShape support constructor 2015-07-31 18:17:35 +08:00
cocos2dx_spine.ini Update the ini files for js binding 2015-05-07 13:00:57 +08:00
cocos2dx_studio.ini Add BlendFuncFrame auto binding 2015-08-26 13:42:52 +08:00
cocos2dx_ui.ini Refine ui bindings and JS constants 2015-07-29 13:06:49 +08:00
genbindings.py Add audio engine bindings in JSB 2015-07-23 14:43:01 +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