Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

When I attempt to bring Card Wars into a new project, the player's cards display way too large. Tried making a few different projects, but I can't seem to work out what's going wrong. It always the player's cards.


(+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.