I'm using HUMP for my gamestates and Quickie for my GUI. I've been able to use Quickie and the gamestates fine but I'm running into an issue that I could not find elsewhere on the forum.
Quickie (I believe) seems to darken the window for some reason and it makes things really hard to see. Whenever I click on a button to go to the next gamestate the screen is really dark.
Code: Select all
if gui.Button("Defend", 565, 540, 150, 30) then
Gamestate.switch(defend)
end
Code: Select all
function Menu:draw()
love.graphics.draw(menuBackground, 0, 0)
gui.core.draw()
end
Is there anyway to fix this?