5秒后如何使物体(球)移动?

时间:2019-11-19 03:44:52

标签: processing

我有一个代码,一旦运行代码,球便会为此移动,但是我希望它在5秒钟后移动。 我已经在处理中编写了代码。 这是我的代码:


void setup(){
  size(640,450);
}

void draw() {
 background(155);
 ellipse(x, 100, 50, 50);
 x = x + 1;

}

1 个答案:

答案 0 :(得分:1)

millis()将返回自启动程序以来的毫秒数。您可以尝试以下方法:

int x = 0;

void setup(){
  size(640,450);
}

void draw() {
 background(155);
 ellipse(x, 100, 50, 50);
 if (millis() > 5000) {
   x = x + 1;
 }
}

球将等待5秒钟。玩得开心!