Search found 4 matches

by Jesterscript
Wed Nov 04, 2009 2:47 pm
Forum: Support and Development
Topic: love. draw_fill and love.draw_line missing in 0.6.0?
Replies: 3
Views: 2772

love. draw_fill and love.draw_line missing in 0.6.0?

I can't get love.graphics.rectangle() working in 0.6.0 because love.draw_fill and love.draw_line ar both nil, why are this constants uninitialized? Is there anything I would "require" to use them?

Thanks in advance.
by Jesterscript
Mon Nov 02, 2009 8:59 pm
Forum: Support and Development
Topic: A question about redrawing...
Replies: 2
Views: 3060

Re: A question about redrawing...

Thank you, that's what I needed to know exactly.
by Jesterscript
Mon Nov 02, 2009 8:21 pm
Forum: Support and Development
Topic: A question about redrawing...
Replies: 2
Views: 3060

A question about redrawing...

Hi all, I'm using LÖVE (simply amazing fw by the way, I LÖVE it :) ) in some kind of object oriented approach, implemented in Lua by use of metatables as described in lua-users.org tutorials. I have some independent objects on screen, every object has (as it's class dictates) a draw() method and an ...