giganciprogramowania

lekcja 10 - Segment.py

Feb 19th, 2022 (edited)
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  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.  
Add Comment
Please, Sign In to add comment