Page 2 of 2

Re: Problems with the new line drawing system in 0.8

Posted: Wed May 09, 2012 8:34 am
by vrld
Because of how anti aliasing is implemented. Making the lines very thin (<< 1 pixel) and zooming in blows up the anti aliasing. We are working on it, though it turns out that it's not an easy problem (as edge cases rarely are :roll: ).

Re: Problems with the new line drawing system in 0.8

Posted: Wed May 09, 2012 3:28 pm
by vrld
You can exhale now. The fix will be in the next release. Until then you should avoid drawing lines while using love.graphics.scale() and big numbers.

Re: Problems with the new line drawing system in 0.8

Posted: Wed May 09, 2012 3:37 pm
by Robin
vrld wrote:You can exhale now.
:awesome:

Re: Problems with the new line drawing system in 0.8

Posted: Wed May 09, 2012 4:46 pm
by ljdp
This is what I do:

Code: Select all

love.graphics.setLineWidth( math.max( 1, 1 / zoom ) )