Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

bitsy

a little engine for little games, worlds, and stories · By adam le doux

Mirrored bitsy??

A topic by bogtypewriter created 9 days ago Views: 51 Replies: 1
Viewing posts 1 to 2

hello everyone! hope you are all having a good day :) i am trying to figure out a way to make a bitsy game where directions are reversed/mirrored (ie, left arrow key sends you right, up arrow key sends you down, etc) i seem to recall seeing a hack for it at some point but have unfortunately lost track of it… any advice/hacks you know of to give this effect would be much appreciated.

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.