This site requires JavaScript, please enable it in your browser!
Greenfoot back
sabrim
sabrim wrote ...

2015/1/9

Title won't show up?

sabrim sabrim

2015/1/9

#
public GameWorld() { super(600, 400, 1); background.setFont(new Font("Special Elite", Font.PLAIN, 36)); background.drawString("Level 1: Antonyms", 40, 50); } Please help!!
danpost danpost

2015/1/9

#
The greenfoot framewok changes the drawing color of the default background to WHITE. You need to change the drawing color before drawing the string onto it (use the GreenfootImage method 'setColor').
You need to login to post a reply.