xxxxxxxxxx
55
let c = 0;
let a = 75;
let e = 0;
function setup() {
createCanvas(windowWidth, windowHeight);
colorMode(HSB, 360, 100, 100);
}
function draw() {
background(125, 0, 50);
roboboy(mouseX, mouseY);
if (mouseY > height / 4 || e >= 100) {
c = c + 1;
e = 0;
a = 75;
}
if (mouseY < height / 4) {
c = c - 2;
}
if (c < 0) {
c = 0;
}
if (c >= 100) {
a = 0;
e = e + 1;
fill(0, 100, 100);
noStroke();
textAlign(CENTER, CENTER);
textSize(width / 16);
text("Congrats! you killed him,", width / 2, height / 8);
textSize(width / 32);
text("u happy now?", width / 2, (height / 8) * 7);
}
}
function roboboy(px, py) {
fill(0, 0, 75);
strokeWeight(5);
stroke(0, 0, 0);
line(px, py, width / 2, width / 4);
fill(0, 100, 100);
ellipse(px, py, width / 16);
fill(0, c, a);
rect(width / 4, height / 4, width / 2, height / 2);
fill(180, 100, a);
ellipse((width / 8) * 3, (height / 8) * 3, width / 16);
ellipse((width / 8) * 5, (height / 8) * 3, width / 16);
fill(40, 100, 90);
rect((width / 8) * 3, height / 2, width / 4, height / 16);
line((width / 16) * 7, height / 2, (width / 16) * 7, (height / 16) * 9);
line((width / 16) * 8, height / 2, (width / 16) * 8, (height / 16) * 9);
line((width / 16) * 9, height / 2, (width / 16) * 9, (height / 16) * 9);
}