simplyfied y world positioning

This commit is contained in:
2023-12-12 21:12:37 +01:00
parent 77fb62ca5f
commit 3279713778
4 changed files with 28 additions and 26 deletions

View File

@ -33,7 +33,7 @@ class App:
# create sprite groups
self.cards = pygame.sprite.Group()
testMonsterCard = MonsterCard(pygame.Vector2(500,500), "Assets/Cards/MonsterCards/testmonstercard/", self.__inputHandler)
testMonsterCard = MonsterCard(pygame.Vector2(500, 850), "Assets/Cards/MonsterCards/testmonstercard/", self.__inputHandler)
self.cards.add(testMonsterCard)
while self.__running: