Questions about the LÖVE API, installing LÖVE and other support related questions go here.
Forum rules
Before you make a thread asking for help,
read this.
-
egorcod
- Prole
- Posts: 17
- Joined: Sun Jul 02, 2017 9:41 am
Post
by egorcod »
Hello!
I have a little robot texture:
I have code to draw it:
Code: Select all
love.load = function()
image = love.graphics.newImage('robot.png')
image:setFilter("nearest", "nearest")
end
love.draw = function()
return love.graphics.draw(image, 0, 0, 0, 20, 20)
end
But when drawed, robot have strange effects like weird pixel blur and outline around him:
Can I fix it?
-
raidho36
- Party member
- Posts: 2063
- Joined: Mon Jun 17, 2013 12:00 pm
Post
by raidho36 »
Hmm... works fine to me. Try updating your graphics driver, see if driver control panel has any weird settings.
-
MrFariator
- Party member
- Posts: 548
- Joined: Wed Oct 05, 2016 11:53 am
Post
by MrFariator »
Someone on Discord not too long ago had similar scaling issues because they had DSR (Dynamic Super Resolution) enabled on their graphics card.
Users browsing this forum: Ahrefs [Bot] and 13 guests