draw( )
This is where you should draw things onto the screen.
Usage
function draw( ) ... end
Arguments
None
Returns
Nothing
Examples
Example 1: Drawing stuff on screen
function load()
-- Set font.
font = love.graphics.newFont(love.default_font, 10)
love.graphics.setFont(font)
end
function draw()
-- Draw a message on screen.
love.graphics.draw("Hello LOVE", 100, 100)
end