- Home /
How to compress NPOT texture
I have NPOT texture which size is 2.3 MB. This is very large for my game (for Android). Compressing doesn't work. There is the warning "Only POT textures can be compressed to ETC1 format". How can I compress this texture?
$$anonymous$$ake it POT and wherever you use it, adjust the offset and tiling of the material.
Ok, sprites are a different story. Follow the suggestion by NorthStar79, the SpritePacker is your choice.
Answer by NorthStar79 · Sep 21, 2017 at 05:14 AM
you can pack all of your sprites into one POT sprite. you can manualy do it outside of unity and slice it after import. or you can pack them automatically in unity. this way you can both reduce build size and drawcalls. For further information check sprite packer in documentation.
Your answer
Follow this Question
Related Questions
Problem with GetPixel from a resized texture in 5.4 0 Answers
Signed Float Textures 0 Answers
Texture broken in build but normal in edit mode 1 Answer
Problem with Texture Compression 1 Answer
Editing lightmaps through code 0 Answers