Advertisement
MateuszGrabarczyk

Untitled

Apr 15th, 2023
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. import pygame
  2.  
  3. #klasa pomocnicza obraz
  4. class Obraz(pygame.sprite.Sprite):
  5. def __init__(self, sciezka):
  6. super(Obraz, self).__init__()
  7. self.obraz = pygame.image.load(sciezka)
  8.  
  9. #klasa bazowa
  10. class Element():
  11. def __init__(self, typ):
  12. #wskaźnik wybranego elementu ubioru
  13. self.wybrany = 0
  14. #lista obrazów
  15. self.lista_obrazow = []
  16. #użycie pętli aby zaczytać wszystkie obrazu z folderu
  17. for i in range(1, 4):
  18. sciezka = f'images/{typ}{i}.png'
  19. wczytany_obraz = Obraz(sciezka)
  20. self.lista_obrazow.append(wczytany_obraz)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement