conf.lua 1.5 KB

123456789101112131415161718192021222324
  1. function love.conf(t)
  2. t.title = "LoveFS" -- The title of the window the game is in (string)
  3. t.author = "linux-man" -- The author of the game (string)
  4. t.url = nil -- The website of the game (string)
  5. t.identity = nil -- The name of the save directory (string)
  6. t.version = "0.10.2" -- The LÖVE version this game was made for (string)
  7. t.console = false -- Attach a console (boolean, Windows only)
  8. t.window.width = 800 -- The window width (number)
  9. t.window.height = 600 -- The window height (number)
  10. t.window.fullscreen = false -- Enable fullscreen (boolean)
  11. t.window.vsync = true -- Enable vertical sync (boolean)
  12. t.window.fsaa = 0 -- The number of FSAA-buffers (number)
  13. t.modules.joystick = false -- Enable the joystick module (boolean)
  14. t.modules.audio = true -- Enable the audio module (boolean)
  15. t.modules.keyboard = true -- Enable the keyboard module (boolean)
  16. t.modules.event = true -- Enable the event module (boolean)
  17. t.modules.image = true -- Enable the image module (boolean)
  18. t.modules.graphics = true -- Enable the graphics module (boolean)
  19. t.modules.timer = true -- Enable the timer module (boolean)
  20. t.modules.mouse = true -- Enable the mouse module (boolean)
  21. t.modules.sound = true -- Enable the sound module (boolean)
  22. t.modules.physics = false -- Enable the physics module (boolean)
  23. end