xxxxxxxxxx
39
var ultimoBtoSelecionado = -1;
function retorno(xIni, xFim, id){
let teveClique = false
if ( mouseIsPressed && mouseX > xIni && mouseX < xFim ){
fill(200)
teveClique = true
}
else {
fill(0)
}
rect(xIni, 0, xFim - xIni, height)
return [id, teveClique]
}
function setup() {
createCanvas(400, 400);
}
var y = 0;
function draw() {
background(220);
r = retorno(50,150,1)
if ( r[1] ){
ultimoBtoSelecionado = r[0]
}
r = retorno(200,300,2)
if ( r[1] ){
ultimoBtoSelecionado = r[0]
}
}
function mouseClicked() {
console.log("ID: "+ultimoBtoSelecionado)
}