Fazendo a verificação da colisão manualmente
let xAtor = 91;
let yAtor = 366;
let pontos = 0;
function mostraAtor(){
image(imagemAtor, xAtor, yAtor, 30,30)
}
function movimentaAtor(){
if (keyIsDown(UP_ARROW)){
yAtor -= 3
}
if (keyIsDown(DOWN_ARROW)){
yAtor += 3
}
}
function voltaAtorInicial(){
if (yAtor < 15){
pontos += 1
yAtor = 366
}
}
function verificaColisao(){
for (let i = 0; i < imagemCarros.length; i++){
if (xAtor + 15 > xCarros[i] - 10 && xAtor - 15 < xCarros[i] + 25 && yAtor - 15 < yCarros[i] + 20 && yAtor + 15 > yCarros[i]){
yAtor = 366;
pontos -= 1
}
}
}
function mostraPlacar(){
fill(color(0,0,255))
textSize(20)
text(pontos, width / 5, 25)
}