Created
December 3, 2012 07:41
-
-
Save pokutuna/4193427 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int startTime; | |
int threshould = 3000; | |
void setup() { | |
startTime = millis(); | |
} | |
void draw() { | |
int diff = millis() - startTime; | |
if (diff > threshould) { | |
background(color(255, 0, 0)); | |
} else { | |
background(color(0, 0, 255)); | |
} | |
} | |
void keyPressed() { | |
startTime = millis(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment