How to add +1 to variable every 10 seconds in Processing?

前端 未结 3 1460
日久生厌
日久生厌 2020-12-07 05:41

Excuse my ignorance, but I ran into a problem that turned out to be challenging for my current knowledge in programming with Processing, even though the idea is quite simple

3条回答
  •  南笙
    南笙 (楼主)
    2020-12-07 06:31

    The other answers are fine general approaches, but they don't take advantage of the features that Processing provides for you.

    For example, you could use the frameCount variable to check how many frames have elapsed. Since draw() is called 60 times per second, 10 seconds is 600 frames. Something like this:

    void draw(){
      if(frameCount % 600 == 0){
        // 10 seconds has elapsed
      }
    }
    

    Another way to do this is to store the last time 10 seconds elapsed, and then check that against the current time to see if 10 seconds has elapsed since then. Something like this:

    int previousTime = 0;
    
    void draw(){
       if(millis() > previousTime + 10*1000){
          // 10 seconds has elapsed
          previousTime = millis();
       }
    }
    

    More info can be found in the reference.

提交回复
热议问题