mirror of https://github.com/axmolengine/axmol.git
b7467da607 | ||
---|---|---|
.. | ||
README.md | ||
axis_3d.ini | ||
axis_audioengine.ini | ||
axis_backend.ini | ||
axis_base.ini | ||
axis_controller.ini | ||
axis_csloader.ini | ||
axis_extension.ini | ||
axis_navmesh.ini | ||
axis_physics.ini | ||
axis_physics3d.ini | ||
axis_spine.ini | ||
axis_studio.ini | ||
axis_ui.ini | ||
axis_video.ini | ||
axis_webview.ini | ||
genbindings.py |
README.md
How to Use bindings-generator
On Windows:
- Make sure that you have installed
android-ndk-r16
or later. - Install python2.7.18 (32bit) from http://www.python.org/ftp/python/2.7.18/python-2.7.18.msi with
Add to 'PATH'
install option. - Install python dependices by pip.
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