Page 2 of 2

Re: SH1FT V1.1 - a gravity bending platformer

Posted: Wed Apr 06, 2016 6:53 pm
by Hydrogen Maniac
pgimeno wrote:For me (under Linux, using WindowMaker as the window manager) the window starts to move down until it goes off the screen. I could see the menu there before it disappeared, though.

Commenting out this line fixed the problem:

Code: Select all

love.window.setFullscreen(options.fullscreen, "desktop")
You should not do that in love.update. Or at least you should only do it when the option is changed.

Edit: Played it now. It's quite fun. I noticed the physics problems reported above.
Okay, I think I fixed the issue.

love.window.setFullscreen(options.fullscreen, "desktop") should only be run when you press F1 in the build I attached, but I'm not certain since I can't replicate the problem on my system. Tell me if it worked or if I should try something else if you have the time.

Re: SH1FT V1.1 - a gravity bending platformer

Posted: Wed Apr 06, 2016 8:23 pm
by pgimeno
Yes, working fine now :3 Thanks!