我开始使用 libgdx。我在主干( StillModelViewerGL20.java)中打开了示例模型加载器。在源代码中,我在render
回调中看到了这段代码:
batch.begin();
font.draw(batch, "fps: " + Gdx.graphics.getFramesPerSecond(), 20, 30);
batch.end();
但我在屏幕上看不到任何文字。在这个例子中我需要修复什么才能看到显示的文本吗?
我开始使用 libgdx。我在主干( StillModelViewerGL20.java)中打开了示例模型加载器。在源代码中,我在render
回调中看到了这段代码:
batch.begin();
font.draw(batch, "fps: " + Gdx.graphics.getFramesPerSecond(), 20, 30);
batch.end();
但我在屏幕上看不到任何文字。在这个例子中我需要修复什么才能看到显示的文本吗?