conf.lua 1.3 KB

1234567891011121314151617181920212223
  1. function love.conf(t)
  2. t.title = "Gspot Demo" -- The title of the window the game is in (string)
  3. t.author = "trubblegum" -- The author of the game (string)
  4. t.identity = "Gspot" -- The name of the save directory (string)
  5. t.console = false -- Attach a console (boolean, Windows only)
  6. t.window.width = 480 -- The window width (number)
  7. t.window.height = 640 -- The window height (number)
  8. t.window.fullscreen = false -- Enable fullscreen (boolean)
  9. t.window.vsync = love._version_major > 0 and 0 -- Enable vertical sync (boolean/integer)
  10. t.window.fsaa = 4 -- The number of MSAA-samples (number)
  11. t.window.msaa = 4 -- The number of MSAA-samples (number) (for 0.10)
  12. t.modules.joystick = false -- Enable the joystick module (boolean)
  13. t.modules.audio = false -- Enable the audio module (boolean)
  14. t.modules.keyboard = true -- Enable the keyboard module (boolean)
  15. t.modules.event = true -- Enable the event module (boolean)
  16. t.modules.image = true -- Enable the image module (boolean)
  17. t.modules.graphics = true -- Enable the graphics module (boolean)
  18. t.modules.timer = true -- Enable the timer module (boolean)
  19. t.modules.mouse = true -- Enable the mouse module (boolean)
  20. t.modules.sound = false -- Enable the sound module (boolean)
  21. t.modules.physics = false -- Enable the physics module (boolean)
  22. end