Disable mip mapping.

Hey, i have this texture:

15446-01.jpg

what can i do so that the textures are not so blurry? With these properties, they are like this:
15447-02.jpg

It’s the same when playing. how can i make the blur go further from the camera? The texture is actually 3072 px2 resolution, and 128 colors, and the file size is abt 1.5 MB. does it stay that way when i import it?

I have only ever used textures for the Android system, but the principles the same.

You would have to use MipMaps, basically they make the texture still be seen in some good detail as they get further from the camera, but depending on what you’re developing for, I know of no blur effect that could help here.

The only think that would help is the PRO version of Unity that allows you to use LOD (Level of Detail) for objects so that you can define how far away an object has to be before the texture level falls.

But that’s as much as I can help you here

Just to leave a note, in case this helps anyone looking for a similar solution as myself - I was able to disable “Generate Mip Maps” by changing the texture to Advanced in the importer settings. I then dechecked “Generate Mip Maps”.

When I returned to the game, it used the high detail texture regardless of the camera distance from the object.

EDIT: I see now that this doesn’t really apply to the question above - seeing as I was brought to this page when looking for my own solution, I’ll leave it.

If your texture is ‘3072 px2 resolution’, assuming you meant 3072x2 pixels, then you’re not giving it enough pixels to mipmap properly.

I always use a minimum of 16 pixels, because it will mip as follows:

16x16 > 8x8 > 4x4 > 2x2 > 1x1

That’s 4 levels of mip and the orignal texture size, which works out nicely. Check out the TIFF file format and custom mipmapping inside photoshop, it’s probably what you’ll need to generate crisps edges for your mips, as opposed to auto generating them in unity and having them all muddy.

Edit: Old post, I know, this is just in case other people have this issue.