/
pabdulin
/
m2k
Обзор
Документация
Войти
/
pabdulin
/
m2k
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
conf.lua
38 строк
1 KB
dj--alex
first_commit
20 фев 2026, 09:25
20 фев 2026, 09:25
fd360e4
Код
Авторство
О чём код?
function love.conf(t) t.identity = "data" t.version = "11.3" t.console = false t.window.title = "M2k by dj-alex" t.window.width = 0 t.window.height= 0 t.window.usedpiscale = false t.window.borderless = false t.window.resizable = true t.window.minwidth = 800 t.window.minheight = 450 t.window.fullscreen = false -- Enable fullscreen (boolean) t.window.vsync = true -- Enable vertical sync (boolean) t.window.msaa = 0 -- The number of samples to use with multi-sampled antialiasing (number) t.window.fsaa = 0 t.window.display = 1 t.window.highdpi = true -- Enable high-dpi mode for the window on a Retina display (boolean) t.window.srgb = false 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.mouse = true t.modules.physics = false t.modules.sound = true t.modules.system = true t.modules.timer = true t.modules.window = true t.modules.thread = true t.modules.video = false -- Enable the video module (boolean) t.accelerometerjoystick = false t.externalstorage = true end