feat(ball): Добавлена логика изменения базовой скорости мяча. С течением времени и на каждом следующем уровне

This commit is contained in:
Ilia Mashkov
2026-07-19 13:20:10 +03:00
parent 62abd8b77d
commit b05fb89bc5
4 changed files with 26 additions and 3 deletions
+2
View File
@@ -9,6 +9,8 @@ export const PADDLE_SECTOR_AMOUNT = 20;
export const BALL_RADIUS = 10;
export const BALL_SPEED = 3;
export const BALL_SPEED_LEVEL_STEP = 2;
export const BALL_SPEED_TIME_STEP = 0.002;
export const BALL_INITIAL_ANGLE = 0;
export const BRICK_WIDTH = 40;