Gostaria de saber como posso trocar Shift, Control, Escape e ALT por W, A, S, D.
function movimentaAtores(){
  if (keyIsDown(UP_ARROW)){
    yBia -= 3;
  }
   if (keyIsDown(DOWN_ARROW)){
    yBia += 3;
   }
  if (keyIsDown(LEFT_ARROW)){
    xBia -= 3;
  }
  if (keyIsDown(RIGHT_ARROW)){
    xBia += 3;
  }
  if (keyIsDown(SHIFT)){
    yTima -= 3;
  }
   if (keyIsDown(CONTROL)){
    yTima += 3;
  }
  if (keyIsDown(ESCAPE)){
    xTima -= 3;
  }
  if (keyIsDown(ALT)){
    xTima += 3;
  }
} 
            