4

在我问我的问题之前,我为任何不一致的地方道歉。我对此很陌生。我正在制作一个现在看起来像这样的游戏(图片不重要): 我的游戏

红点应该向右移动,他们用计时器来做到这一点。这工作正常。图形并没有更新,所以我必须来回拖动窗口的一侧才能看到我的点在移动。我能做些什么来解决这个问题?

我的主类中的paintcomponent方法:

    public void paintComponent(Graphics g){
    super.paintComponent(g);
    for (int x = 0; x < SomeInts.amount; x++){
        for (int y = 0; y < SomeInts.amount; y++){
            tile[x][y].colorBody(g, x, y);              
            Tower temp;
            for (int i = 0; i < towers.size(); i++){        
                temp = towers.get(i);
                temp.colorBody(g, tile[x][y].getSize());
                temp.guard.colorBody(g, tile[x][y].getSize());                        
            }
        }
    }
}

我的红点课。也称为 Guard 类:

public class Guard {
int x, y, size = 10, towerx, towery;
Timer timer;
public Guard(int towerx1, int towery1){
    towerx = towerx1;
    towery = towery1;
    x = towerx + 1;
    y = towery;
    new Timer().schedule(new MyTask(), 1000, 1000);
}

public void colorBody(Graphics g, int tilesize){
    g.setColor(new Color(255, 0, 0));
    g.fillOval(x * tilesize + tilesize / 4, y * tilesize + tilesize / 4, size, size);       
}

public class MyTask extends TimerTask {
    public void run() {
        x++;
    }
}

}

感谢您的时间。

4

1 回答 1

5

我在这里猜测了一下,但我认为您需要调用 repaint() 方法来查看您所做的更改。

于 2012-10-09T09:11:23.773 回答