p5.js alterar a posição do botão
let button; //Defines Button As A Variable
function setup(){
button = createButton('label', 'value'/*Optional*/) //Creates <button>
button.position(x, y) //Sets Location Of Button
button.addClass('Class Name')
}
Ethan Belcher