Version 0.1.1a
LÖVE Documentation
OverviewLicenceCreditsGetting started
Devices
love.objectslove.graphicslove.audiolove.keyboardlove.mouselove.filesystemlove.timer
Types
ColorFontImageMusicSound
Callbacks
loadupdaterendermousepressedmousereleasedkeypressedkeyreleased
Miscellaneous
ConstantsConfig files
Function
render( )
This is where you should draw things onto the screen.
Usage
render( )
Arguments
None
Returns
Nothing
Examples
Example 1: Drawing stuff on screen function render()
   -- Draw a message on screen.
   love.graphics:draw("Hello LOVE", 100, 100)
end