🐣 Brunch P5 skeleton

This commit is contained in:
Joshua Seigler 2019-11-03 10:11:03 -05:00 committed by Joshua Seigler
commit 3402feb22c
9 changed files with 7607 additions and 0 deletions

14
app/sketch.js Normal file
View file

@ -0,0 +1,14 @@
new p5(sketch => {
sketch.preload = () => {
/* load images and music */
}
sketch.setup = () => {
sketch.createCanvas(640, 480);
sketch.background('#fff');
}
sketch.draw = () => {
//
}
});