fiebig.schule

p5.js

GIF-Erstellung

// Save a 5-second gif when the user presses the 's' key.
// Wait 1 second after the key press before recording.
function keyPressed() {
  if (key === 's') {
    saveGif('mySketch', 5, { delay: 1 });
  }
}
JavaScript
CC BY-NC 4.0 by fiebig.schule