|
Some recent topics started on our forums |
g.drawImage not working unless in paint() routine.
|
public void paintGame() {
Graphics g;
g = this.getGraphics();
cannon1 = new Player(20, "cannon_red.gif", 100, 100);
cannon2 = new Player(20, "cannon_blue.gif", 400, 100);
Toolkit t;
t = getToolkit();
... |
Posted August 16, 2006 2:56:17 PM
|
View All Topics Started By This User
|
|
Some recent replies made on our forums |
g.drawImage not working unless in paint() routine.
|
Thank you very much,
I moved the startGame() method to the end of the display, and that worked beautifully.
Java is SO picky!!!!!!!!!! |
Posted August 16, 2006 8:49:13 PM
|
View All Replies Made By This User
|