So I am updating my old android game and I am having some problems with the font. I had to scale up my bitmap font and now it is blurry. Because of that I want to know where can I get a bitmap font with higher resolution and in which folder do I have to put it? Can someone help me with that?
yourBitmapFontName = new BitmapFont();
batch.begin();
yourBitmapFontName.getRegion().getTexture().setFilter(Texture.TextureFilter.Linear, Texture.TextureFilter.Linear);
yourBitmapFontName.getData().setScale(7f);
yourBitmapFontName.setColor(com.badlogic.gdx.graphics.Color.WHITE);
yourBitmapFontName.draw(batch, Score, Gdx.graphics.getWidth()/2-6,130);
batch.end();