From 733f75830fa1ce1f2663545368806c531bfeb196 Mon Sep 17 00:00:00 2001 From: Matt Low Date: Sun, 11 Nov 2018 12:00:08 +0400 Subject: [PATCH] Moved paddle down --- core/src/com/me/brickbuster/entity/Ball.java | 2 +- core/src/com/me/brickbuster/entity/Paddle.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/com/me/brickbuster/entity/Ball.java b/core/src/com/me/brickbuster/entity/Ball.java index 1797895..2e78c1a 100644 --- a/core/src/com/me/brickbuster/entity/Ball.java +++ b/core/src/com/me/brickbuster/entity/Ball.java @@ -21,7 +21,7 @@ public class Ball extends Entity { public void render() { getShapeRenderer().begin(ShapeRenderer.ShapeType.Filled); getShapeRenderer().setColor(BALL_COLOR); - getShapeRenderer().circle(this.getX(), this.getY(), RADIUS, 50); + getShapeRenderer().circle(this.getX(), this.getY(), RADIUS); getShapeRenderer().end(); } diff --git a/core/src/com/me/brickbuster/entity/Paddle.java b/core/src/com/me/brickbuster/entity/Paddle.java index 19702b0..f12f594 100644 --- a/core/src/com/me/brickbuster/entity/Paddle.java +++ b/core/src/com/me/brickbuster/entity/Paddle.java @@ -11,7 +11,7 @@ public class Paddle extends Entity { public static final Color PADDLE_COLOR = Color.BLACK; public static final int PADDLE_WIDTH = 100; public static final int PADDLE_HEIGHT = 16; - public static final int PADDLE_Y = 50; + public static final int PADDLE_Y = 25; public Paddle(BrickBuster brickBuster) { super(brickBuster, BrickBuster.WIDTH/2, PADDLE_Y);