Version 0.2.0
LÖVE Documentation
OverviewLicenceCreditsGetting started
Devices
love.objectslove.graphicslove.audiolove.keyboardlove.mouselove.filesystemlove.timer
Types
AnimationColorFontImageMusicSound
Callbacks
loadupdatedrawmousepressedmousereleasedkeypressedkeyreleased
Miscellaneous
ConstantsConfig filesKeyboard shortcuts
Function
draw( )
This is where you should draw things onto the screen.
Usage
draw( )
Arguments
None
Returns
Nothing
Examples
Example 1: Drawing stuff on screen function load()
   -- Set font.
   font = love.objects: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