pong: fix left paddle location

This commit is contained in:
Trianta 2024-12-30 17:03:22 -06:00
parent e2f111dd36
commit d1d9631ae8

View File

@ -87,7 +87,7 @@ class PongCore {
this.gameover = false;
this.paddleSpeed = 6;
this.ball = new Ball(new Box(this.width / 2, this.height / 2, this.grid, this.grid));
this.left = new Paddle(new Box(this.width / 2, this.height / 2 - this.paddleHeight / 2, this.grid, this.paddleHeight), true);
this.left = new Paddle(new Box(this.grid * 2, this.height / 2 - this.paddleHeight / 2, this.grid, this.paddleHeight), true);
this.right = new Paddle(new Box(this.width - this.grid * 3, this.height / 2 - this.paddleHeight / 2, this.grid, this.paddleHeight), false);
}