- Home /
Texture compression for 2d games - Unity
Hello,
I am developing a 2d game, it works fine in iPhone 4 and 5 but i want to optimize it for 3GS and iPods. I am using RGBA 32 bits compression with aniso level 3 for image sized 2048 X 640, which is used for my parallax.
Please suggest.
Answer by Benproductions1 · Feb 19, 2013 at 12:36 AM
Hi!
Depending on your game, 32 bit compression could ruin your game, or it could fit in just right. If you have a 3Gs, you could just try and see what works best. Depending on how many and what surface it's on, a large texture can be quite bad or quite alright. Its hard to come to a be all end all solution for optimisation. It really depends on everything :)
Hope this helps, Benproductions1
Answer by Eric5h5 · Feb 19, 2013 at 01:11 AM
Your options are uncompressed or PVRTC; there's nothing else. You can potentially save images as PNG and load them during runtime, but that will only affect file size on the device, and they will still be uncompressed in memory.
Your answer
Follow this Question
Related Questions
Changing objects texture causes high draw call count! 1 Answer
Assigning UV Map to model at runtime 0 Answers
Why are my texture sizes so large in my build? 3 Answers
Best practices for developing optimized interiors for Unity? 2 Answers
Unity after change scene twice then release the texture memory 1 Answer