Search:

Type: Posts; User: enflation

Search: Search took 0.09 seconds.

  1. Replies
    5
    Views
    7,572

    Re: repaint panel without clearing it

    I Overrided it, I don't know why I put overloaded...

    I have something along the lines of:



    @Override
    public void update(Graphics g) {
    paint(g);
    }
  2. Replies
    5
    Views
    7,572

    repaint panel without clearing it

    I'm currently making a 2D game with sprite animation. The problem is that I only want to redraw the character sprites and not redraw the background sprites on every repaint.

    Due to the...
  3. Replies
    3
    Views
    5,244

    Thread runs only once and not again

    I have something like the following:


    class t_thread extends Thread {

    public t_thread() {
    new Thread(this).start();
    }

    @Override
Results 1 to 3 of 3