Search found 2 matches

by mgthefourth
Sat Oct 22, 2011 10:48 am
Forum: Support and Development
Topic: Love.graphics.image comes up blank
Replies: 3
Views: 1744

Re: Love.graphics.image comes up blank

Thank you so much, I had been stuck like that for a while.

Just a small point,

Some of the example images (namely the one used in this tutorial http://love2d.org/wiki/AnAL don't use PO2 widths and heights, which is would probably cause confusion for beginners.

Thanks again

mg.
by mgthefourth
Fri Oct 21, 2011 11:05 pm
Forum: Support and Development
Topic: Love.graphics.image comes up blank
Replies: 3
Views: 1744

Love.graphics.image comes up blank

Hi all, I'm new to Love but have so far been able to make it work. Recently I tried to display an image to the screen with this code: function love.load() img = love.graphics.newImage("test.png") end function love.update(dt) end function love.draw() love.graphics.draw(img, 0, 0) end But wh...