Version 0.3.2
LÖVE Documentation
OverviewLicenseCreditsInstallingGetting started
Devices
love.graphicslove.audiolove.keyboardlove.mouselove.filesystemlove.timerlove.system
Types
AnimationColorFontFileImageMusicParticleSystemSound
Callbacks
loadupdatedrawmousepressedmousereleasedkeypressedkeyreleased
Miscellaneous
ConstantsConfig filesKeyboard shortcuts
Callback
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