xxxxxxxxxx
50
let timePass=0;
let interReg, interBold;
function preload() {
interReg = loadFont('Inter-Regular.ttf');
interBold = loadFont('Inter-Bold.ttf');
}
function setup() {
createCanvas(600, 600);
frameRate(30);
rectMode(CENTER);
}
function draw() {
background(255);
noStroke();
fill(0);
textFont(interBold);
textAlign(CENTER);
textSize(40);
text(round(timePass), width/2, 250);
if(frameCount%30==0){
timePass+=0.9;
}
stroke(0);
strokeWeight(2);
fill(255);
rect(width/2, 400, 200, 80, 5);
textFont(interReg);
textSize(20);
noStroke();
fill(0);
text("TAP!", width/2, 410);
if((mouseX>200)&&(mouseX<400)&&(mouseY>360)&&(mouseY<440)) {
if (mouseIsPressed) {
timePass+=1.5;
noStroke();
fill(220);
rect(width/2, 400, 200, 80, 5);
fill(0);
text("TAP!", width/2, 410);
}
}
}