I am starting to work with libgdx. I opened an example of a bootloader model in the boot ( StillModelViewerGL20.java ). In the source, I see this code in the render
callback:
batch.begin(); font.draw(batch, "fps: " + Gdx.graphics.getFramesPerSecond(), 20, 30); batch.end();
But I do not see any text on the screen. Is there something I need to fix in this example to see the text?
source share