I'm creating a game and I want some of the image to be repainted while others to stay constant. I had put my methods in the paint() on java applet but this seems to access the methods in an endless loop.
How do I create a "driver method" that will access my methods but also use the draw() at the same time?
public void paint (Graphics g)
{
bufferGraphics.clearRect (0, 0, dim.width, dim.height);
//mainScreen ();
g.drawImage (offscreen, 0, 0, this);
} // end Paint method
public void update (Graphics g)
{
paint (g);
}
public void main (String[] args)
{
game ();
}

update()method. (It is hard to say with no SSCCE) 3)bufferGraphicsThat is almost certainly the wrong way to go about custom painting. Don't cacheGraphicsobjects if they come from the applet. 4) Why does this applet have amain(String[])? 5) For better help sooner, post an SSCCE. (Yes I know I mentioned that in point 1 - it was worth repeating.) – Andrew Thompson Jun 19 '11 at 14:57