我目前正在尝试自学用 Java 编写代码,并且我正在使用 eclipse,并且我有一个创建 pong 的教程,但是有些它是如何丢失的。我唯一遇到问题的部分是完成球课。我已经让它渲染并正确显示在窗口中,但实际上并没有做任何事情,它只是保持静止。这是因为我不知道我需要什么代码,并且所有的谷歌搜索都只导致对不起作用的代码感到沮丧。
到目前为止,这就是我在球课上的全部内容。
import java.awt.Color;
import java.awt.Graphics;
public class Ball extends Entity {
public Ball(int x, int y, Color color) {
super(x, y, color);
this.width = 15;
this.height = 15;
int yspeed = 1;
int xspeed = 2;
}
public void render( Graphics g ) {
super.render( g );
}
public void update() {
if (y <= 0) {
y = 0;
}
if (y >= window.HEIGHT - height - 32 ) {
y = window.HEIGHT - height -32;
}
}
任何建议将不胜感激。