Updated the sprites a little bit and reduced paddle speed

This commit is contained in:
2022-05-09 16:42:03 +02:00
parent 06d5ec4b1c
commit 238a65fd4a
4 changed files with 1 additions and 1 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 B

After

Width:  |  Height:  |  Size: 186 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 303 B

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 294 B

After

Width:  |  Height:  |  Size: 234 B

+1 -1
View File
@@ -9,7 +9,7 @@ use tetra::graphics::text::*;
const WINDOW_WIDTH:f32 = 640.0; const WINDOW_WIDTH:f32 = 640.0;
const WINDOW_HEIGHT:f32 = 480.0; const WINDOW_HEIGHT:f32 = 480.0;
const PADDLE_SPEED:f32 = 8.0; const PADDLE_SPEED:f32 = 4.0;
const BALL_SPEED:f32 = 5.0; const BALL_SPEED:f32 = 5.0;
const PADDLE_SPIN: f32 = 4.0; const PADDLE_SPIN: f32 = 4.0;
const BALL_ACC:f32 = 0.05; const BALL_ACC:f32 = 0.05;