当我的鼠标超过400像素时,它需要打印“您输了”。
我已经尝试过以下代码。什么都没发生
void setup() {
size(800, 600);
if (mouseX > 400) {
print("game over");
}
}
什么都没发生。
答案 0 :(得分:0)
setup()
函数仅在程序首次启动时一次运行。
如果您希望代码继续运行,请考虑将其放在draw()
函数中,该函数每秒运行60次。
void setup() {
size(800, 600);
}
void draw() {
if (mouseX > 400) {
print("game over");
}
}