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
Config files
Config files
Each game should have a config file that specifies game title, author, version, etc. The name of this file must be "game.conf". A full listing of available attributes is presented below.

All values are optional, but it is highly recommended to at least include title and author.
List of attributes
title[string]The game title.
author[string]The author of the game.
width[integer]Display resolution width.
height[integer]Display resolution height.
Examples
Example 1: Standard config file. # Title / author
title = "Epic Quest III"
author = "Awesome Games"

# Display resolution
width = 800
height = 600