3

I have attempted to do the following

Generator Configuration

When I tried to check either Bullet or FreeType or Both, the following pops up

Warning

I do not get why?

Fish
  • 1,689
  • 1
  • 18
  • 28

1 Answers1

5

The Bullet and FreeType libraries both depend on native code (C or C++) that isn't available in the HTML Libgdx backend.

The HTML Libgdx backend uses Google's GWT project to cross-compile Java bytecodes into Javascript. Thus, only Java code, or APIs that exist in both places can be used. See http://www.badlogicgames.com/wordpress/?p=2308 for more details.

P.T.
  • 24,557
  • 7
  • 64
  • 95