Yeah, still having problems with this. Could someone reply with the code of how I would place a text into my world using the "drawString" command, and tell me if it's in the world class, or an actor, or what.
Thanks!


1 2 | getBackground().setColor(Color.red); //or another color getBackground().drawString( "this is how you do it" , 200 , 300 ); |
1 2 3 | Font font = getBackground().getFont(); font = font.deriveFont( 14 .0f); getBackground().setFont(font); |