xxxxxxxxxx
39
let currentPanel = 1;
function setup() {
createCanvas(400, 400);
}
function mousePressed() {
currentPanel = currentPanel + 1;
if (currentPanel > 5) {
currentPanel = 1;
}
}
function draw() {
background(220);
if (currentPanel == 1) {
circle(100, 100, 100);
textSize(20);
text("Hello square", 180, 100);
} else if (currentPanel == 2) {
square(220, 220, 100);
textSize(20);
text("yo hey circle", 180, 200);
} else if (currentPanel == 3) {
circle(100, 100, 100);
textSize(20);
text("How's life been?", 180, 100);
} else if (currentPanel == 4) {
square(220, 220, 100);
textSize(20);
text("Just vibin", 180, 200);
} else if (currentPanel == 5) {
circle(100, 100, 100);
textSize(20);
text("Sameeeeeee", 180, 100);
}
}