TrueType Fonts in libGDX
Yes you will definitely need to add the gdx-stb-truetype jars to your project as you stated in your edit. Here is how you will use it, pretty straighforward… First you need to declare your BitmapFont and the characters you will use… BitmapFont font; public static final String FONT_CHARACTERS = “abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789][_!$%#@|\\/?-+=()*&.;,{}\”´`'<>”; Then you need to create … Read more