So partilhar o processo do meu PONG no Java, estou indo ao tempo da aula e queria mostrar o código, se alguem tiver alguma sugestão estou aberto a ler ou ouvir !
https://editor.p5js.org/exequielmaguna/sketches/9d-T6GwHt
// Tamaño de la bolita let xBall = 300; let yBall = 200; let diametro = 20; // Velocidad de la bolita let xSpeedball = 6 let ySpeedball = 6 let raio = diametro / 2 // Raqueta tamaño y posición let xRaqueta = 5 let yRaqueta = 150 let anchoraqueta = 8 let largoraqueta = 100
function setup() { createCanvas(600, 400); }
function draw() { background(0); showball()speedball() variableball() showraqueta() moveraqueta() verificaChoqueRaqueta()
}
function showball(){ circle(xBall,yBall,diametro) }
function speedball(){ xBall += xSpeedball yBall += ySpeedball }
function variableball(){ if (xBall + raio>width|| xBall - raio <0 ){ xSpeedball=-1 } if (yBall + raio>height|| yBall - raio <0 ){ ySpeedball=-1 } } function showraqueta(){ rect(xRaqueta,yRaqueta,anchoraqueta,largoraqueta) } function moveraqueta(){ if (keyIsDown(UP_ARROW)){ yRaqueta -= 8; } if (keyIsDown(DOWN_ARROW)){ yRaqueta += 8; } } function verificaChoqueRaqueta(){ if (xBall - raio < xRaqueta + anchoraqueta && yBall - raio < yRaqueta + largoraqueta && yBall + raio > yRaqueta){ xSpeedball *= -1; } }
Se alguem pudesse me explicar como eu posso colar o meu código para ele se ver mais bonito aqui no forum seria uma grande ajuda :D
Obrigado !