Skip to content

Instantly share code, notes, and snippets.

@bernhardfritz
Created September 19, 2024 16:24
Show Gist options
  • Select an option

  • Save bernhardfritz/3058d296ba13eb72dbbc809a95036009 to your computer and use it in GitHub Desktop.

Select an option

Save bernhardfritz/3058d296ba13eb72dbbc809a95036009 to your computer and use it in GitHub Desktop.
import p8g, {
background,
createCanvas,
rect,
random,
} from 'https://unpkg.com/p8g.js';
p8g.draw = () => {
// background(220);
rect(150, 50, 100, 100);
};
p8g.mouseReleased = () => {
background(random(255));
}
createCanvas(320, 320);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment