I thought it'd be something like love.graphics.setLineStyle( 'rough' ), but that's not working for me.
If you want to look inside the love file, the file to look at would be
scene > 0 > draw megaman
line 35.
The relevant code would be
Code: Select all
love.graphics.draw(
img,
quadTable[qy][qx],
o.x,o.y,
o.r, --r?
o.sx*a, --sx?
o.sy, --sy?
o.ox+o.w/o.sx/2-turn_adjustment/o.sx,--ox
o.oy+o.h/o.sy/2--oy
)