我有这个程序,我希望球在被点击时移动得更快。这是两个类:
import processing.core.*;
public class Ball {
int xPos = 0;
int xDir = 1;
int speed = 1;
PApplet parent;
Ball (int _x, PApplet p){
xPos = _x;
parent = p;
}
void move() {
xPos = xPos + xDir * speed;
if (xPos>400-20 || xPos<20)
{
xDir =-xDir;
}
}
void speedUp() {
speed=speed+1;
}
void display() {
parent.ellipse(xPos, 200, 40, 40);
}
void run(){
move();
display();
}
}
和
import processing.core.*;
public class Game extends PApplet{
public static void main(String args[]){
PApplet.main(new String[] { "--present", "Game" });
}
Ball b1 = new Ball(xPos,this);
public void setup()
{
size (400, 400);
smooth();
background(0);
noStroke();
fill(255);
}
public void draw()
{
background(0);
b1.run();
}
public void mousePressed()
{
if (dist(mouseX, mouseY, xPos, 200)<=20)
{
b1.speedUp();
}
}
}
我在我的游戏客户端中找不到引用 xPos 的方法,所以当我点击球时它会加快速度。我正在使用处理,即使我不太熟悉它。但这是我项目中的要求。迫切需要帮助!