Skip to main content

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

Hi, nice game. But I’ve noticed that each scene is a separate image with full background which makes the download size huge. Here’s an overlay generator python script which allows you to split each scene into shared background and transparent overlay image with characters.

That should make the whole game about 1.5GB smaller and also allow you to place multiple characters into a scene at the correct weight stage. For best results, render the 3D scenes into PNG or other lossless format before using the script. Passing JPEG images into the script will result in bigger file sizes due to JPEG compression artifacts.

Thank you for this, right now i have made the switch to .webp for my images and it made the game about 60% smaller so that is already a big win. But this is still an amazing tool and would work amazingly for this type of game so i will probably use it to make the game even smaller.

Great, I’ve updated the script to write WebP files since the format supports transparency.

Wow, this is great! Thank you so much for writing this.