Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

I would love to play this game! Unfortunately, it doesn’t fit in my browser window, even fullscreened. :(

Arrow keys scrolling ruins it, sadly.

Hey @TurtlePanda Games, the game also supports using the WASD keys and you might have a better time playing it if you zoom your window out a bit. We didn't upload it until too late so we missed out on doing some of sanity testing (some of our characters are messed up as well). Thanks for expressing interest in our game!

I had a similar problem with the in-browser emulator I just put on my page, where the spacebar would scroll the page. Here’s how I fixed it for spacebar:

window.onkeydown = function(e) { if (e.keyCode == 32 && e.target == document.body) { e.preventDefault(); } };

If your game isn’t javascript and is just embedded in the page, this will be an easy fix. If it’s javascript, I think it would have to count as part of the submission =/