Search found 1 match

by bigdevlover
Sat Oct 22, 2016 2:41 am
Forum: Support and Development
Topic: Toggling Fullscreen with Escape
Replies: 9
Views: 4964

Toggling Fullscreen with Escape

I can't seem to figure out how I would toggle fullscreen with escape. This is the code I currently have in my love.udate function: function love.update (dt) if love.keyboard.isDown("d") then x = x +1 y = y + 1 end if love.keyboard.isDown("a") then x = x - 1 y = y - 1 end if love....