我想在我的游戏中(在 libgdx 中)绘制一些字体。我没有错误,一切正常,但我没有看到字体。我不知道为什么。也许有人有同样的问题。感谢帮助。这是我在创建方法中的代码:
String scores = "SCORE:";
atlas = new TextureAtlas();
camera = new OrthographicCamera(1, h/w);
batch = new SpriteBatch();
score = new BitmapFont(Gdx.files.internal("gfx/abc.fnt"),
atlas.findRegion("gfx/abc.png"), false);
并渲染:
Gdx.gl.glClearColor(1, 1, 1, 1);
Gdx.gl.glClear(GL10.GL_COLOR_BUFFER_BIT);
camera.update();
batch.setProjectionMatrix(camera.combined);
batch.begin();
score.draw(batch, scores, 300, 300);
Gdx.app.log("", ""+scores);
batch.end();