1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
function love.conf(t)
t.identity = "mrrescue"
t.version = "0.10.0"
t.console = false
t.window.title = "Mr. Rescue"
t.window.icon = nil
t.window.width = 256*3
t.window.height = 200*3
t.window.borderless = false
t.window.resizable = false
t.window.fullscreen = false
t.window.fullscreentype = "exclusive"
t.window.vsync = true
t.window.fsaa = 0
t.window.display = 1
t.window.highdpi = false
t.window.srgb = false
t.modules.physics = false
t.modules.mouse = false
end
function love.conf(t)
t.identity = "mrrescue"
t.version = "11.0"
t.console = false
t.accelerometerjoystick = true
t.gammacorrect = false
t.window.title = "Mr. Rescue"
t.window.icon = nil
t.window.width = 256*3
t.window.height = 200*3
t.window.borderless = false
t.window.resizable = false
t.window.minwidth = 1
t.window.minheight = 1
t.window.fullscreen = false
t.window.fullscreentype = "desktop"
t.window.vsync = true
t.window.msaa = 0
t.window.display = 1
t.window.highdpi = false
t.window.x = nil
t.window.y = nil
t.modules.audio = true
t.modules.event = true
t.modules.graphics = true
t.modules.image = true
t.modules.joystick = true
t.modules.keyboard = true
t.modules.math = true
t.modules.sound = true
t.modules.system = true
t.modules.timer = true
t.modules.window = true
t.modules.thread = true
t.modules.mouse = false
t.modules.physics = false
t.modules.touch = false
t.modules.video = false
end
|