added custom button colors and borderless toggle

This commit is contained in:
Mango 2025-08-23 23:14:11 -07:00
commit 40034d2f00
4 changed files with 27 additions and 8 deletions

View file

@ -1,10 +1,12 @@
WINDOWWIDTH = 373
WINDOWHEIGHT = 212
BORDERLESS = true
function love.conf(t)
t.window.width = 373
t.window.height = 212
t.window.borderless = true
t.window.width = WINDOWWIDTH
t.window.height = WINDOWHEIGHT
t.window.borderless = BORDERLESS
t.window.title = "input display"
t.window.icon = "icon.png"
t.modules.physics = false
end