axmol/tools/tolua
rh101 95cf5b5c2b Merge: 2aa2d69151 b7506fed0c
Merge branch 'vfs-support' of https://github.com/rh101/engine-x into vfs-support
2021-04-23 00:01:47 +10:00
..
README.md Merge: 2aa2d69151 b7506fed0c 2021-04-23 00:01:47 +10:00
cocos2dx.ini tolua mutli search paths support 2020-11-02 16:37:18 +08:00
cocos2dx_3d.ini Init Commit 2019-11-23 20:27:39 +08:00
cocos2dx_audioengine.ini Init Commit 2019-11-23 20:27:39 +08:00
cocos2dx_backend.ini Now, the lua binding generator should works [ci build] 2020-11-02 16:47:33 +08:00
cocos2dx_controller.ini Init Commit 2019-11-23 20:27:39 +08:00
cocos2dx_csloader.ini Sync config files 2020-11-02 12:50:51 +08:00
cocos2dx_extension.ini Sync config files 2020-11-02 12:50:51 +08:00
cocos2dx_navmesh.ini Sync config files 2020-11-02 12:50:51 +08:00
cocos2dx_physics.ini Init Commit 2019-11-23 20:27:39 +08:00
cocos2dx_physics3d.ini Merge: 2aa2d69151 b7506fed0c 2021-04-23 00:01:47 +10:00
cocos2dx_spine.ini Sync config files 2020-11-02 12:50:51 +08:00
cocos2dx_studio.ini Sync config files 2020-11-02 12:50:51 +08:00
cocos2dx_ui.ini Sync folder for binding generator config 2020-11-01 20:18:50 +08:00
cocos2dx_video.ini Sync folder for binding generator config 2020-11-01 20:18:50 +08:00
cocos2dx_webview.ini Sync folder for binding generator config 2020-11-01 20:18:50 +08:00
genbindings.py Optimize python scripts 2020-11-02 11:35:44 +08:00

README.md

How to Use bindings-generator

On Windows:

    pip install PyYAML
    pip install Cheetah
  • Go to "tools/tolua" folder, and run "genbindings.py". The generated codes will be under "cocos\scripting\auto-generated\lua-bindings".

On MAC:

  • The OSX 10.10 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
  • Download NDK 64bit r10c or later from Android Ndk
  • Run
	export ANDROID_NDK=/path/to/android-ndk-10c
    ./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
  • Download NDK 64bit r10c or later from Android Ndk
  • Go to "tools/tolua", Run
	export ANDROID_NDK=/path/to/android-ndk-r10c
    ./genbindings.py