xxxxxxxxxx
38
let bongs = [];
let faces = [];
function setup() {
createCanvas(350, 600);
background(255, 255, 255);
bongs[0] = loadImage('images/bong1.png');
bongs[1] = loadImage('images/bong2.png');
bongs[2] = loadImage('images/bong3.png');
bongs[3] = loadImage('images/bong4.png');
bongs[4] = loadImage('images/bong5.png');
bongs[5] = loadImage('images/bong6.png');
bongs[6] = loadImage('images/bong7.png');
faces[0] = loadImage('images/bong8.png');
faces[1] = loadImage('images/bong9.png');
}
function draw() {
let random_bong_index = Math.floor((Math.random() * bongs.length));
let random_face_index = Math.floor((Math.random() * faces.length));
for (i = 0; i < bongs.length; i++) {
if (mouseIsPressed) {
image(bongs[random_bong_index], mouseX, mouseY, width/5, height/5)
} else {
image(faces[random_face_index], mouseX, mouseY, width/5, height/5)
}
}
textSize(width/3);
fill(255, 255, 255);
text("BONG BONG", 0, width/2, height/2);
// textSize(width * 0.09);
// text("THE 17TH PRESIDENT", 0, width/5, height/5);
}