This commit is contained in:
Waylon Walker 2023-06-30 07:57:40 -05:00
parent d0b3712f17
commit f66255ea0d
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
3 changed files with 14 additions and 12 deletions

View file

@ -30,8 +30,8 @@ class Player:
self.white = (255, 255, 255)
self.x = self.game.screen.get_width() / 2
self.y = self.game.screen.get_height() / 2
self.speed = 5
self.max_speed = 5
self.speed = 10
self.max_speed = 10
self.image = pygame.image.load("player.png").convert_alpha()
self.x_last = self.x
self.y_last = self.y