Is there a way to make blurry sprites sharp? (How do I turn off filter and mip-maps?)

Hello everyone! I am a newcomer to Defold and interested in making a small game! But, I’ve come across a wall… I cannot figure out how to make low resolution sprite high quality. The image below shows what I am looking at, however, I want it higher quality, without increasing the size of the image in Photoshop.

Thank you in advance!

You may want to use nearest neighbor interpolation, which is perfect for pixel-art sprites. You can make the switch in your project settings under graphics.

For more info see:

7 Likes

So can I do “nearest” on Defold 1.x?

Yes, you can. If you copy the builtin materials for sprites, add a custom sampler and set that to nearest you can specify sampling type too.

Unless you have a reason not to you should switch to Editor 2.

1 Like

:clap: thank you