Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)

Hey, it sounds like a problem with the oversampling parameter.
Try using Transform() instead of oversampling.

Inside PlayerWarCards() screen find the problematic line: 

idle Image(cardBack, loose=True, oversample=5)

and replace it with:

idle Image(cardBack, loose=True) at Transform(zoom=0.2)

That fix worked like a charm.

Thanks for the prompt response.