From db0ba90c41fff898fcc0ceb9a35eeec995ca3e7b Mon Sep 17 00:00:00 2001 From: jill Date: Sat, 18 Sep 2021 13:42:45 +0300 Subject: [PATCH] change the sizing variables around --- conf.lua | 2 ++ main.lua | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/conf.lua b/conf.lua index e4d7dda..0044594 100644 --- a/conf.lua +++ b/conf.lua @@ -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' diff --git a/main.lua b/main.lua index 384b414..3c1042d 100644 --- a/main.lua +++ b/main.lua @@ -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()