conf.lua 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. DEDICATED = arg[2] == '--dedicated'
  2. function love.conf(t)
  3. t.identity = "GridCars" -- The name of the save directory (string)
  4. t.version = "11.1" -- The LÖVE version this game was made for (string)
  5. t.console = false -- Attach a console (boolean, Windows only)
  6. if not DEDICATED then
  7. t.window.title = "Grid Cars" -- The window title (string)
  8. t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
  9. t.window.width = 1000 -- The window width (number)
  10. t.window.height = 800 -- The window height (number)
  11. t.window.borderless = false -- Remove all border visuals from the window (boolean)
  12. t.window.resizable = false -- Let the window be user-resizable (boolean)
  13. t.window.minwidth = 1 -- Minimum window width if the window is resizable (number)
  14. t.window.minheight = 1 -- Minimum window height if the window is resizable (number)
  15. t.window.fullscreen = false -- Enable fullscreen (boolean)
  16. t.window.fullscreentype = "desktop"-- Standard fullscreen or desktop fullscreen mode (string)
  17. t.window.vsync = true -- Enable vertical sync (boolean)
  18. t.window.fsaa = 0 -- The number of samples to use with multi-sampled antialiasing (number)
  19. t.window.display = 1 -- Index of the monitor to show the window in (number)
  20. t.window.highdpi = false -- Enable high-dpi mode for the window on a Retina display (boolean). Added in 0.9.1
  21. t.window.srgb = false -- Enable sRGB gamma correction when drawing to the screen (boolean). Added in 0.9.1
  22. t.modules.audio = true -- Enable the audio module (boolean)
  23. t.modules.graphics = true -- Enable the graphics module (boolean)
  24. t.modules.image = true -- Enable the image module (boolean)
  25. t.modules.keyboard = true -- Enable the keyboard module (boolean)
  26. t.modules.mouse = true -- Enable the mouse module (boolean)
  27. t.modules.sound = true -- Enable the sound module (boolean)
  28. t.modules.window = true -- Enable the window module (boolean)
  29. else
  30. t.window = nil
  31. t.modules.audio = false
  32. t.modules.graphics = false
  33. t.modules.image = false
  34. t.modules.keyboard = false
  35. t.modules.mouse = false
  36. t.modules.sound = false
  37. t.modules.window = false
  38. end
  39. t.modules.event = true -- Enable the event module (boolean)
  40. t.modules.joystick = false -- Enable the joystick module (boolean)
  41. t.modules.math = false -- Enable the math module (boolean)
  42. t.modules.physics = false -- Enable the physics module (boolean)
  43. t.modules.system = false -- Enable the system module (boolean)
  44. t.modules.timer = true -- Enable the timer module (boolean)
  45. t.modules.thread = true -- Enable the thread module (boolean)
  46. end