Postingan

Menampilkan postingan dari Desember 9, 2018

Game Pong Menggunakan Java

Gambar
Ada beberapa class yang dibutuhkan untuk membuat game Pong melawan Bot ini yaitu : 1. Ball untuk bola 2. Paddle untuk pemukul 3. Render untuk merender grafiknya 4. Pong untuk meload seluruh nya. 1. Class Ball import java.awt.Color; import java.awt.Graphics; import java.util.Random; public class Ball { public int x, y, width = 25, height = 25; public int motionX, motionY; public Random random; private Pong pong; public int amountOfHits; public Ball(Pong pong) { this.pong = pong; this.random = new Random(); spawn(); } public void update(Paddle paddle1, Paddle paddle2) { int speed = 5; this.x += motionX * speed; this.y += motionY * speed; if (this.y + height - motionY > pong.height || this.y + motionY < 0) { if (this.motionY < 0) { this.y = 0; ...