I am getting started using Unity and had a question I was hoping someone could helpnwith.
I am doing a 2D Only Game in which I have many character images that are 256x256. Upon importing textures into unity (256x256 PSD Files), I set the Format in the Inspector to 16-Bits. In the inspector, it is saying the file is 128KB. If I set the format to Compressed in the inspector, the file size is 32KB (This way, the image looks horrible in-app and is all jagged). Are these actual file storage sizes that will increase the size of my app, or just sizes in memory?
The reason I ask is these are very simple 2-3 color files that if I save from Photoshop as a PNG, they are only about 4KB and quality is perfect. This app has several hundred images, and the app size will be way too large if each texture is going to use 128KB of disk space, and this seems unnecessary when a 4KB PNG looks just as good.
Is there another way I should be importing images to optimize disk space without having such bad quality and pixelation?