up-editor/conf.lua

16 lines
420 B
Lua
Raw Normal View History

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