axmol/tools/tolua
halx99 a651879ee6 Tidy audio folder 2022-01-03 11:34:58 +08:00
..
README.md Update README.md 2020-12-16 12:33:22 +08:00
cocos2dx.ini Rename core folder name 2021-12-31 14:39:08 +08:00
cocos2dx_3d.ini Rename core folder name 2021-12-31 14:39:08 +08:00
cocos2dx_audioengine.ini Tidy audio folder 2022-01-03 11:34:58 +08:00
cocos2dx_backend.ini Rename core folder name 2021-12-31 14:39:08 +08:00
cocos2dx_controller.ini Rename core folder name 2021-12-31 14:39:08 +08:00
cocos2dx_csloader.ini Rename core folder name 2021-12-31 14:39:08 +08:00
cocos2dx_extension.ini Fix ci 2021-12-31 16:29:11 +08:00
cocos2dx_navmesh.ini Rename core folder name 2021-12-31 14:39:08 +08:00
cocos2dx_physics.ini Rename core folder name 2021-12-31 14:39:08 +08:00
cocos2dx_physics3d.ini Rename core folder name 2021-12-31 14:39:08 +08:00
cocos2dx_spine.ini Rename core folder name 2021-12-31 14:39:08 +08:00
cocos2dx_studio.ini Rename core folder name 2021-12-31 14:39:08 +08:00
cocos2dx_ui.ini Rename core folder name 2021-12-31 14:39:08 +08:00
cocos2dx_video.ini Rename core folder name 2021-12-31 14:39:08 +08:00
cocos2dx_webview.ini Rename core folder name 2021-12-31 14:39:08 +08:00
genbindings.py Rename core folder name 2021-12-31 14:39:08 +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