change the sizing variables around

This commit is contained in:
jill 2021-09-18 13:42:45 +03:00
parent 6cf7753674
commit db0ba90c41
2 changed files with 4 additions and 2 deletions

View File

@ -2,6 +2,8 @@ function love.conf(t)
t.identity = 'box-of-eases'
t.version = '11.3'
t.window.width = 1080
t.window.height = 800
t.window.resizable = true
t.window.title = 'Box of Eases'
t.window.icon = 'logo.png'

View File

@ -4,7 +4,7 @@ for k, v in pairs(_G) do
end
love.graphics.setDefaultFilter('nearest', 'nearest')
interfaceFont = love.graphics.newFont('Inter-Regular.otf', 16)
interfaceFont = love.graphics.newFont('Inter-Regular.otf', 20)
ease = require 'ease'
@ -24,7 +24,7 @@ require 'util' -- exports into global table
padding = 16
outerpadding = 22
margin = 6
dropdownWidth = 128
dropdownWidth = 186
lineWidth = 2
fontHeight = love.graphics.getFont():getHeight()