Hi, I need some troubleshooting about BitmapFont
//called in the const.
font = new BitmapFont();
// called in the renderloop
spriteBatch.setProjectionMatrix(RessourceManager.camera.combined);
spriteBatch.disableBlending();
spriteBatch.begin();
font.setColor(1, 1, 1, 0);
font.draw(spriteBatch, "TEST", 300, 300);
spriteBatch.end();
The Background of the String is also rendered white, so it’s quite hard to read.
In addition it just looks weird. What am I doing wrong?
Do you have any link where I can download .fnt + .png files? google doesn’t help me, only shows .ftt or .fnt without the png file
Is it possible to use awt-font -> slick Truefont -> libgdx bitefont?
How to you render strings?
best regards