Compare commits

...

2 Commits

Author SHA1 Message Date
Trianta
16242e95ca pong: increase speed of game 2024-12-30 17:03:50 -06:00
Trianta
d1d9631ae8 pong: fix left paddle location 2024-12-30 17:03:22 -06:00

View File

@ -81,13 +81,13 @@ class PongCore {
this.grid = 15; // size of grid squares
this.paddleHeight = this.grid * 5;
this.paddleHeightMax = this.canvas.height - this.grid - this.paddleHeight;
this.timeout = 32; // speed in ms
this.timeout = 4; // speed in ms
this.width = this.canvas.width;
this.height = this.canvas.height;
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);
}