Search found 2 matches

by mitterdoo
Sun Dec 27, 2015 12:42 pm
Forum: Support and Development
Topic: Removing blur on scaled sprites
Replies: 2
Views: 2277

Re: Removing blur on scaled sprites

Image:setFilter("nearest", "nearest") You could also use love.graphics.setDefaultFilter() before loading the images so you don't have to set the filter for each. image = love.graphics.newImage("Image.png") image:setFilter("nearest", "nearest") or lo...
by mitterdoo
Sun Dec 27, 2015 11:16 am
Forum: Support and Development
Topic: Removing blur on scaled sprites
Replies: 2
Views: 2277

Removing blur on scaled sprites

I've been trying to make a 16-bit styled game with small sprites, but when I try to scale them, I just get a heavily blurred image instead.
Image
Is there any way to get rid of this effect?