generative/app/sketch.js
2019-11-11 13:50:42 -05:00

14 lines
218 B
JavaScript

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