function movimentaAtor(){
if (keyIsDown(87)){
yAtor -= 3;}
if (keyIsDown(83)){
if(podeMover()){
yAtor += 3;
}
}
if (keyIsDown(68)){
if (moveRight()){
xAtor += 3
}
}
if(keyIsDown(65)){
if(moveLeft()){
xAtor -= 3
}
}
}
function podeMover(){
return yAtor < 366;
}
function moveRight(){
return xAtor < 470;
}
function moveLeft(){
return xAtor > 0
}
eu usei as teclas A,W,S,D Right para direita (68) Left para esquerda (65)