Module
love.conf
The configuration module

The configuration module is the replacement for game.conf. It's lua based now so the names are a bit different.

Don't forget to put it in a file called conf.lua!

Examples
Default Configuration
  1. function love.conf(t)
  2.     t.modules.joystick = true   --Enable the joystick module (boolean)
  3.     t.modules.audio = true      --Enable the audio module (boolean)
  4.     t.modules.keyboard = true   --Enable the keyboard module (boolean)
  5.     t.modules.event = true      --Enable the event module (boolean)
  6.     t.modules.image = true      --Enable the image module (boolean)
  7.     t.modules.graphics = true   --Enable the graphics module (boolean)
  8.     t.modules.timer = true      --Enable the timer module (boolean)
  9.     t.modules.mouse = true      --Enable the mouse module (boolean)
  10.     t.modules.sound = true      --Enable the sound module (boolean)
  11.     t.modules.physics = true    --Enable the physics module (boolean)
  12.     t.console = false           --Enable the console to see what prints (boolean)
  13.     t.title = "Untitled"        --The title of the window the game is in (string)
  14.     t.author = "Unnamed"        --The author of the game (string)
  15.     t.screen.fullscreen = false --Enable fullscreen (boolean)
  16.     t.screen.vsync = true       --Enable vertical sync (boolean)
  17.     t.screen.fsaa = 0           --The number of FSAA-buffers (number)
  18.     t.screen.height = 600       --The window height (number)
  19.     t.screen.width = 800        --The window width (number)
  20.     t.version = 0               --The LÖVE version this game was made for
  21. end
Copyright © 2006-2009 LÖVE Development Team.