- Home /
Sprite-based animation - mobile memory issue
In my mobile game I have sprite-based animation which consists of 63 textures (1200x900px). I created some animations and bind them together in animator so all 63 sprites get loaded into memory. On modern devices, there’s no problem but I would like to also suport older devices, let’s say 512MB RAM phone with 845x480px resolution. Howewer I run into memory issue, memory gets filled and game crashes. So in texture import settings Override for Android section I tried to set Max Size to 512 and game doesn't crash on low-end devices. But on FULL-HD screen resolutions it doesn't look quite good. I also know about posibility to create multiple .apk files, one can contain low-res images and second high-res images and you can upload both to Google Play and devices will download appropriate version of it. But if you faced similar problem I would like to know about your solution for it. Thanks.
Your answer
Follow this Question
Related Questions
Is it normal for Unity5 Android app sizes to be so large?? 0 Answers
Fixing fill rate issue on Android - best approach? 0 Answers
My mobile game crashes once a certain number of textures have been loaded. What can I do about that? 0 Answers
Performance and size of NPOT texture in POT atlas? 0 Answers
How to have 2 sets of textures and make sure only one is loaded? 0 Answers