How can I reduce the size of my game? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 1

How can I reduce the size of my game?

I have developed an Android game called Blubb but the size of the game is a bit more than expected. Can someone suggest a way of reducing the size of the game without compromising much on the quality of the game? Thanks.

5th Mar 2017, 11:06 PM
Ashish Kumar
Ashish Kumar - avatar
1 Resposta
+ 3
It depends. If your code is generalized, encapsulated, and DRY, then there's probably not a whole lot you could do. If it isn't, do those things. IMHO, does it really matter? Unless it's grossly oversize for a simple game, then it doesn't matter all to much. Also.... Given you're using an engine, and probably a few libraries, you're adding a lot of unused code. The only way to really scale down is to start removing unnecessary features from the engine/libraries. Only do that if you're comfortable though. Otherwise, you could get fatal errors, or simply weird behavior.
6th Mar 2017, 2:29 PM
Thomas Rudolph
Thomas Rudolph - avatar