Spiel für das Medientheater HBK Saar, Teil des Projektes "Fun Palace" (Reupload der Repository von 2017)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

class_videodoor.pde 305B

1234567891011
  1. void replay() {
  2. /*
  3. instead of using loop. this way we can do stuff when the movie restarts without
  4. nasty frame calculation or duration / time comparison (there is a movie.duration() and movie.time() function)
  5. */
  6. door.stop();
  7. if (!win) {
  8. button[6].randomPosition();
  9. door.play();
  10. }
  11. }