function draw(); love.graphics.rectangle(love.draw_line, 100, 100, 200, 200); end
yeah, the same thing happens. no rectangle unless I set the line width.
Wil
That is quite odd, I got a white rectangle. I'm running the same things as iamwillhelm. Did you try changing the background color to see if it's making a black rectangle for you?
I've tried explicitly setting both the color of the pen, as well as the background color, or both, to see if it's either one. It's not. It's the line width.
function load()
love.graphics.setBackgroundColor(255, 0, 0)
love.graphics.setColor(128,128,0)
end
function draw()
love.graphics.rectangle(love.draw_line, 100, 100, 200, 200)
end
Where is the love code contained? Is there source that I can dig into? Maybe I can run the debugger or at least print out some status messages to a logger on my own machine.
Welp I'm out of ideas. Unless somehow you guys have Lua installed already and your version is over-writing Love's version. Or vice-versa. But I'd thought Love called a self-contained Lua implementation...
We don't borrow, we don't read, we don't rent, we don't lease, we take the minds!
bartbes wrote:It does, I myself have lua installed seperately as well.
As to the problems: you don't happen to have some crappy video card or video driver?
I installed Lua separately. Hrm, I might have a crappy video card. I'm running a panasonic toughbook, and it's the intel 82x graphics chip. Once I get my other ubuntu machine up, I'll try it on there.