SHOW:
|
|
- or go back to the newest paste.
1 | import pygame | |
2 | import copy | |
3 | ||
4 | class Segment(pygame.sprite.Sprite): | |
5 | def __init__(self): | |
6 | super().__init__() | |
7 | self.obraz = pygame.image.load("images/segment.png") | |
8 | self.pozycja = pygame.Rect(-32, -32, 32, 32) | |
9 | self.ostatnia_pozycja = None | |
10 | ||
11 | def przesun(self, nowa_pozycja): | |
12 | self.ostatnia_pozycja = copy.deepcopy(self.pozycja) | |
13 | self.pozycja = copy.deepcopy(nowa_pozycja) | |
14 |