box2d.js
box2d.js copied to clipboard
Non-minified source?
Any chance you could include a non-minified javascript file? Debugging into the minified javascript is not any fun.
it will be great
And finally i overcome LLVM, clang and emscripten, and compile non-minified box2d. Use:
$(EMCC) -s INLINING_LIMIT=0 --js-transform "python bundle.py" $< -o $@
without -O2
and here is the sources: https://raw.github.com/Hyzhak/darlingjs/gh-pages/vendor/box2d-dev.js
As you can see they doesn't look so friendly and readable. Clearly, we need to use source maps for emscripten.
Thank you very much Hyzhak, it's appreciated.