All my sprites are blurry when I download them from the web D:

Not strictly a Unity question, but game-development-related; maybe someone on here knows what’s up.

I recently downloaded a bunch of pixel-art assets from various sites like itch.io and craftpix.net. Each file is downloaded as a .zip file containing various PNGs of the sprites. The image quality shown on the website is crystal clear, however when I open the downloaded version on my computer, the images are low quality (blurry/fuzzy). Unzipping the files does not do anything. I have tried looking into various different packages, but all of them downloaded with the same blurry quality. What can I do to fix this?

This is a matter of the filter mode set on import. By default, it’s bilinear. You want it set to point. Click on the sprite asset and change it in the inspector.

The same applies to any other image type. Here’s the same setting for the default image type:

That worked! Thank you! <3