conf.lua 315 B

12345678910111213141516
  1. function love.conf(t)
  2. t.title = "Circle Clock"
  3. t.gammacorrect = false
  4. t.modules.audio = false
  5. t.modules.sound = false
  6. t.modules.physics = false
  7. t.modules.joystick = false
  8. t.window.resizable = true
  9. t.window.highdpi = true
  10. if love._os == "iOS" then
  11. t.window.borderless = true
  12. end
  13. t.window.vsync = 0
  14. end