axmol/tools/tojs
pandamicro 0eec73ba43 Bindings fix and assets manger ex fix (#17115)
* Fix custom event being discard during event emission

* Fix tilemap black line issue

* Fix auto bindings config

* Adapt websocket to new memory model

* Improve cocos2d_specifics code stability

* Fix issue with get_or_create_js_object function

* Improve memory usage in function wrapper invocation

* Use JS Function bind to avoid memory tracking issues

* Support size parameter to collect total byte size before update process

* Fix download resuming issue on Android

* Remove temporary assets when temporary manifest is invalid or out of date

* Use version compare handle to compare manifests versions

* Support max concurrent tasks setting & download verify callback

* Add Manifest::Asset conversion

* Avoid crash caused by wrappers

* Sync implementation of tested and published AssetsManagerEx from Cocos Creator

* Fix linux compilation issues
2017-03-15 16:09:02 +08:00
..
README.mdown Refine lua/js binding tool 2015-09-19 00:08:15 +08:00
cocos2dx.ini Synchronize creator engine bug fixes and upgrade web engine (#17003) 2016-12-14 09:27:47 +08:00
cocos2dx_3d.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_3d_ext.ini Bindings fix and assets manger ex fix (#17115) 2017-03-15 16:09:02 +08:00
cocos2dx_audioengine.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_builder.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_experimental_video.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_experimental_webView.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_extension.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_navmesh.ini Bindings fix and assets manger ex fix (#17115) 2017-03-15 16:09:02 +08:00
cocos2dx_network.ini Bindings fix and assets manger ex fix (#17115) 2017-03-15 16:09:02 +08:00
cocos2dx_physics3d.ini Bindings fix and assets manger ex fix (#17115) 2017-03-15 16:09:02 +08:00
cocos2dx_spine.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_studio.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
cocos2dx_ui.ini Merge part of Cocos2d-x-lite (#16380) 2016-08-19 16:28:47 +08:00
genbindings.py Bindings fix and assets manger ex fix (#17115) 2017-03-15 16:09:02 +08:00

README.mdown

How to Use bindings-generator

On Windows:

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 NDK_ROOT=/path/to/android-ndk-r10c
    ./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 "cocos2d-x/tools/tojs", Run
	export NDK_ROOT=/path/to/android-ndk-r10c
    ./genbindings.py