game: add: PADDLE CAN MOVE

This commit is contained in:
2024-01-15 17:54:58 +01:00
parent a2fbfa1937
commit a30ec46685
8 changed files with 154 additions and 49 deletions

View File

@ -27,6 +27,7 @@ class GameConfig
this.center_y = this.size_y / 2;
this.paddle_ratio = response_data.PADDLE_RATIO;
this.paddle_speed_per_second_max = response_data.PADDLE_SPEED_PER_SECOND_MAX;
this.wall_ratio = response_data.WALL_RATIO;
this.ball_speed_inc = response_data.BALL_SPEED_INC;