Created
June 10, 2017 20:19
-
-
Save cheriimoya/17a7e78e9f8ae70885060ae96d9f73b3 to your computer and use it in GitHub Desktop.
This file contains 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 jetzt; | |
int bildTimer; | |
void setup(){ | |
erstelle(); | |
} | |
void draw(){ | |
jetzt = second(); | |
test(); | |
} | |
void erstelle(){ | |
bildTimer = second(); | |
} | |
void test(){ | |
if(jetzt>bildTimer+3){ | |
println("bild ist abgelaufen"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment