up-editor/conf.lua

19 lines
493 B
Lua
Raw Normal View History

2020-02-21 12:43:31 +01:00
function love.conf(t)
package.path = package.path..";./?.lua"
2020-02-21 15:10:49 +01:00
GAME_WIDTH = 416
GAME_HEIGHT = 240
2020-02-21 12:43:31 +01:00
scale = 2 --scale multiplier
t.version = "11.3"
t.window.width = GAME_WIDTH * scale
t.window.height = GAME_HEIGHT * scale
t.window.vsync = 0
2020-02-21 12:43:31 +01:00
t.modules.joystick = false
t.modules.physics = false
t.modules.touch = false
t.modules.timer = false
t.modules.sound = false
2020-02-21 12:43:31 +01:00
t.modules.accelerometerjoystick = false
t.identity = "up_editor"
t.window.title = "UP editor"
end