Tagged Questions
0
votes
1answer
29 views
TrueType fonts replaced with FreeType fonts in libgdx?
It seems like TrueType font and font generator is replaced with the FreeType font generator? Is this truly the case, because I found this post detailing its usage (the accepted answer here: TrueType ...
0
votes
0answers
75 views
android libgdx font isn't drawing
I have got a background picture and want to draw text on it, but it isn't working.
There is only the picture on the screen.
private SpriteBatch spriteBatch;
private Texture splsh;
private BitmapFont ...
0
votes
0answers
59 views
Drawing with BitmapFont doesn't show anyting
So what am i doing wrong fokes?
public class Memoration implements ApplicationListener {
private OrthographicCamera camera;
public SpriteBatch batch;
public static float w, h;
public ...
0
votes
0answers
74 views
Libgdx apostrophe not rendering
I'm trying to render out text in libgdx, however my apostrophes aren't getting rendered.
Things I've tried:
Switching font (I've tried Arial, so it's not the font)
Checking the bitmap graphic to ...
0
votes
1answer
277 views
How can I use libgdx BitmapFont draw method to write text of specific font style and size.
I have tried the code given below:
Assets.font.draw(objspritebatch, chooseBackground, Gdx.graphics.getWidth()*.5f,Gdx.graphics.getHeight()*.5f);
1
vote
1answer
171 views
Libgdx how to flip a BitmapFont?
I am using a BitmapFont to render text the problem is that I decided to use TrueTypeFontFactory.createBitmapFont method to create the BitmapFont so I can use my own font instead of the default one. ...
2
votes
1answer
486 views
Can't change font color in Libgdx
I'm trying to change the color of the font I use in my application. But whatever I try the font remains black.
I made this font using Hiero font tool.
My code is something like this:
...
4
votes
3answers
1k views
android & libgdx - disable blurry rendering
i'm trying out libgdx as an opengl wrapper , and i have some issues with its graphical rendering :
for some reason , all images (textures) on android device look a little blurred using libgdx . this ...
0
votes
1answer
1k views
Using the same font with different sizes in libgdx
I am using BitmapFonts, LabelStyles and Labels for my texts.
I want to resize some labels, so i use this.
fontType.scale(-.6f);
LabelStyle style = new LabelStyle(fontType, Color.WHITE);
titleLabel ...
2
votes
2answers
2k views
How to show vectorized text using libgdx?
I'm quite a noob with libGDX for Android (nice OpenGL wrapper that can also work on PC), and I've read some nice examples of how to show images and shapes.
However, when I wanted to check out how to ...
10
votes
2answers
5k views
TrueType Fonts in libGDX
Does anyone know how I can use a TTF font in libGDX? I have looked around and have seen things about StbTrueTypeFont but it doesn't seem to be in the latest release.
EDIT: I found the StbTrueType ...