所以我正在更新我的旧安卓游戏,我的字体有一些问题。我不得不放大我的位图字体,现在它变得模糊了。因此,我想知道在哪里可以获得更高分辨率的位图字体以及我必须将它放在哪个文件夹中?有人可以帮我吗?
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();