Skip to content

Instantly share code, notes, and snippets.

@indefinit
Created March 24, 2026 18:40
Show Gist options
  • Select an option

  • Save indefinit/4835bb6e645d1b82b3f4b3fbd52c2d97 to your computer and use it in GitHub Desktop.

Select an option

Save indefinit/4835bb6e645d1b82b3f4b3fbd52c2d97 to your computer and use it in GitHub Desktop.
p5js triggering an event
let lastTime = 0;
function draw() {
if (millis() - lastTime > 1000) {
console.log("One second has passed!");
lastTime = millis();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment