I recently upgraded an old project to Unity 2021 and realized the size differences of the two versions exported.
ABB size in 2021.3 = 500MB
ABB size in 2019.4 = 270MB
Game size after unpacking ABB:
2021.3 = 2GB
2019.4 = 700MB
I would like to understand how both versions compile abb files. How did my game files expanded so much? Texture compression are the same in both projects
This is the cause. Versions 2020 and above no longer support sprite packing, instead it uses Sprite Atlas. Pack the sprites into the Sprite Atlas and the size will remain the same. Bummer, if only someone pointed out earlier.