Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Pressing spacebar to advance the text also scrolls the page for me. Adding something like this to the source would prevent that while the game frame is in focus:

document.onkeydown = function(k) {k.preventDefault();}
document.onkeyup = function(k) {k.preventDefault();}