axmol/tools/tolua
tkzcfc 5f8b96d607 export 'setAttachment' function to lua (#868)
* export: sp.SkeletonAnimation:findBone sp.SkeletonAnimation:getBoundingBox

* export 'setAttachment' function to lua

Co-authored-by: tkzcfc <tkzcfc@users.noreply.github.com>
2022-09-27 19:15:11 +08:00
..
README.md Merge: 2aa2d69151 b7506fed0c 2021-04-23 00:01:47 +10:00
ax_3d.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
ax_audioengine.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
ax_backend.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
ax_base.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
ax_controller.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
ax_csloader.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
ax_extension.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
ax_navmesh.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
ax_physics.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
ax_physics3d.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
ax_spine.ini export 'setAttachment' function to lua (#868) 2022-09-27 19:15:11 +08:00
ax_studio.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
ax_ui.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
ax_video.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
ax_webview.ini Migrate lua bindings generator 2022-09-26 23:01:09 +08:00
genbindings.py Migrate lua bindings generator 2022-09-26 23:01:09 +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