21 lines
295 B
JavaScript
21 lines
295 B
JavaScript
let canvas;
|
|
let textbox;
|
|
|
|
function setup() {
|
|
// Creating the canvas
|
|
canvas = new Canvas();
|
|
canvas.resize();
|
|
canvas.center();
|
|
|
|
textbox = new Textbox();
|
|
}
|
|
|
|
function draw() {
|
|
background(255,100,100);
|
|
}
|
|
|
|
|
|
function windowResized() {
|
|
canvas.resize();
|
|
canvas.center();
|
|
} |