-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathweapon.py
More file actions
21 lines (18 loc) · 926 Bytes
/
Copy pathweapon.py
File metadata and controls
21 lines (18 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import pygame
class Weapon(pygame.sprite.Sprite):
def __init__(self, player, groups):
super().__init__(groups)
direction = player.status.split('_')[0]
self.sprite_type = 'weapon'
# graphic
full_path = f'./assets/chrono/weapons/{player.weapon}/{direction}.png'
self.image = pygame.image.load(full_path).convert_alpha()
# placement
if direction == 'right':
self.rect = self.image.get_rect(midleft = player.rect.midright + pygame.math.Vector2(0,16))
elif direction == 'left':
self.rect = self.image.get_rect(midright = player.rect.midleft + pygame.math.Vector2(0,16))
elif direction == 'down':
self.rect = self.image.get_rect(midtop = player.rect.midbottom + pygame.math.Vector2(-10,0))
else:
self.rect = self.image.get_rect(midbottom = player.rect.midtop + pygame.math.Vector2(-10,0))