added custom button colors and borderless toggle
This commit is contained in:
parent
25c8eb5304
commit
40034d2f00
4 changed files with 27 additions and 8 deletions
10
conf.lua
10
conf.lua
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue