conf.lua 292 B

12345678910
  1. function love.conf(t)
  2. t.window.width = 1280 -- t.screen.width in 0.8.0 and earlier
  3. t.window.height = 768 -- t.screen.height in 0.8.0 and earlier
  4. t.window.fullscreen = false
  5. t.window.vsync = true
  6. t.modules.joystick = false
  7. t.title = "ape"
  8. t.identity = "ape"
  9. t.console = false
  10. end