Quickie Darkening Screen?
Posted: Fri Jan 23, 2015 1:48 am
Hello!
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.
However, if I switch to the other gamestate using Gamestate.switch(defend) in love.load() it doesn't have this darkening effect. I'm also not using any GUI elements anywhere except the menu gamestate. The only draw code I have for the GUI is in my Menu gamestate and not in any of my other gamestates.
Pic:
Is there anyway to fix this?
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?