Skip to main content

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

ribose

3
Posts
6
Followers
5
Following
A member registered Jan 18, 2024 · View creator page →

Creator of

Recent community posts

hi! after you export your game, open the html file in any text editor, then search for the following bit of code:

this.Key = {         
    LEFT: 37,
    RIGHT: 39,
    UP: 38,
    DOWN: 40,

swap the numbers for left and right (and up and down, and also WASD a few lines down), then save the file.

links in html can have a target attribute, which tells the browser where to open the link. in the bitsy museum hack, the `_self` is what's making the game open in the same tab. change that to `_blank` and it should open in a new tab.

natural