Created
September 19, 2024 16:24
-
-
Save bernhardfritz/3058d296ba13eb72dbbc809a95036009 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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