Advertisement
Guest User

Untitled

a guest
Jun 17th, 2014
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.15 KB | None | 0 0
  1. boolean hasBeenDrawn = false;
  2.  
  3. void setup()
  4. {
  5. }
  6.  
  7. void draw()
  8. { if(hasBeenDrawn == false)
  9.   { // code in draw loop
  10.     hasBeenDrawn = true;
  11.   }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement