Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import pygame
- #klasa pomocnicza obraz
- class Obraz(pygame.sprite.Sprite):
- def __init__(self, sciezka):
- super(Obraz, self).__init__()
- self.obraz = pygame.image.load(sciezka)
- #klasa bazowa
- class Element():
- def __init__(self, typ):
- #wskaźnik wybranego elementu ubioru
- self.wybrany = 0
- #lista obrazów
- self.lista_obrazow = []
- #użycie pętli aby zaczytać wszystkie obrazu z folderu
- for i in range(1, 4):
- sciezka = f'images/{typ}{i}.png'
- wczytany_obraz = Obraz(sciezka)
- self.lista_obrazow.append(wczytany_obraz)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement