我尝试做一个迷你游戏,但首先我学习如何动画:)它将是一个2D游戏。 所以我的问题是,如果我试图绘制一个矩形它的工作当我尝试动画(我做了很多代码但不工作:()它不起作用。
有人可以帮我修复它或添加一些提示我该怎么做呢。
public class Window extends JPanel implements ActionListener {
Timer tm = new Timer(5 , this);
int x2 = 0 , velX = 2;
static int x= 500;
static int y= 500;
public void paintComponent(Graphics g){
super.paintComponent(g);
g.setColor(Color.RED);
g.fillRect(x2, 30, 30, 30);
tm.start();
}
public Window(){
JFrame f = new JFrame();
f.pack();
f.setTitle("Game");
f.setSize(x,y);
f.setVisible(true);
f.setLocationRelativeTo(null);
f.setDefaultCloseOperation(f.EXIT_ON_CLOSE);
}
/*public void paint(Graphics g){
Graphics2D g2d = (Graphics2D) g;
Rectangle rect = new Rectangle(50, 50, 50, 50);
g2d.translate(25, 25);
g2d.rotate(Math.toRadians(45));
g2d.draw(rect);
}*/
public static void main(String [] args) throws InterruptedException{
Game g = new Game();
g.setName("Test");
System.out.println(g.getName());
g.setScore();
}
@Override
public void actionPerformed(ActionEvent e) {
x2 = x2 + velX;
repaint();
}
}
答案 0 :(得分:2)
您的代码工作正常,除非您忘记将组件(您将其命名为Window
)添加到Container(在本例中为JFrame
)。为此,请在f.add(this);
构造函数的末尾添加Window()
。
请查看swing-components-and-containers了解详情。