conf.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. -------------------------------------------------------------------------------
  2. -- Copyright (c) 2012 - Roland Yonaba
  3. -- Config file
  4. -------------------------------------------------------------------------------
  5. function love.conf(config)
  6. -- General config
  7. config.title = "Starz Puzzle"
  8. config.author = "Roland_Yonaba"
  9. config.url = "https://yonaba.github.io/Starz-Puzzle"
  10. -- config.version = "0.8.0"
  11. config.release = false
  12. config.identity = "starz puzzle"
  13. -- Window setting
  14. config.console = false
  15. config.screen = config.screen or config.window
  16. config.screen.width = 800
  17. config.screen.height = 600
  18. config.screen.fullscreen = false
  19. config.screen.vsync = false
  20. config.screen.fsaa = 0
  21. -- Audio setup
  22. config.modules.audio = true
  23. config.modules.sound = true
  24. -- Input
  25. config.modules.keyboard = true
  26. config.modules.mouse = true
  27. config.modules.joystick = false
  28. config.modules.touch = false
  29. -- Modules
  30. config.modules.image = true
  31. config.modules.graphics = true
  32. config.modules.timer = true
  33. config.modules.event = true
  34. config.modules.physics = false
  35. config.modules.video = false
  36. config.modules.math = false
  37. config.modules.thread = false
  38. end