xxxxxxxxxx
15
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
textSize(20);
text(round(1000/deltaTime),30,30);
stroke(255,0,0);
fill(0,0,255);
textSize(32);
//textAlign(RIGHT);
text("Manual do Código", mouseX,mouseY);
}