Spiel für das Medientheater HBK Saar, Teil des Projektes "Fun Palace" (Reupload der Repository von 2017)
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }