Page 1 of 1
Can't find tutorials for 'love.graphics'
Posted: Sat Dec 29, 2012 11:22 am
by micolord
Hi guys, I am so new here and I'm lost. Can anyone show me a link for a tutorial wherein it teach you how to make a frame with out print 3: Or can you please show me a little simple example on how to make a blank frame.
Re: Can't find tutorials for 'love.graphics'
Posted: Sat Dec 29, 2012 1:14 pm
by mickeyjm
What exactly do you mean by a frame?
Re: Can't find tutorials for 'love.graphics'
Posted: Sat Dec 29, 2012 2:04 pm
by micolord
mickeyjm wrote:What exactly do you mean by a frame?
Sorry I just call the thing appear a frame.
love.graphics.print("Hello World", 400, 300)
Re: Can't find tutorials for 'love.graphics'
Posted: Mon Dec 31, 2012 2:17 am
by mcjohnalds45
You can just draw things directly to the screen in love.draw, e.g:
Code: Select all
function love.draw()
love.graphics.print("Hello World", 400, 300)
end