I keep trying to replace the files I have in my project with smaller ones..however, the project size just keeps getting bigger and bigger! Help, please?!
129KB for an entire game? That's really small... if that's what you meant.
Some tips: For images make sure the sizes (pixels) are whole numbers divisible by two (e.g. 128, 64, 32, etc.) this helps keep image sizes down. I usually try to make sure background sizes are never bigger than the scene size.
I'm not sure for other things like audio... maybe someone else knows.
@katslump, I have found in the tests I have made that when making a game, coding and images take up very little in comparison to the amount of scenes, but ESPECIALLY music. My game was 7 Mb, I added music and it went up to 30 mb in an instant.
Answers
Some tips: For images make sure the sizes (pixels) are whole numbers divisible by two (e.g. 128, 64, 32, etc.) this helps keep image sizes down. I usually try to make sure background sizes are never bigger than the scene size.
I'm not sure for other things like audio... maybe someone else knows.
Cheers
- Thomas