标签: processing
我对Processing中的计时器有疑问。我想在经过的每一秒之后做一个正方形的产卵。我会使用for循环,if语句等吗?
答案 0 :(得分:0)
您可以在millis()声明中使用frameCount函数或if变量。
millis()
frameCount
if
这样的事情:
void draw(){ if(frameCount % 60 == 0){ //do something } }
可以在the reference找到更多信息。