Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

throwitaroundtown

3
Posts
19
Following
A member registered May 31, 2023

Recent community posts

(1 edit)

NSFW can be wholesome!

(9 edits)

This is game is wonderfulllll

May I suggest having W and Up each behave the same as Space, and having E as an additional confirm key like Enter? That way... well, the game could be played entirely with one hand.  ;)

For anyone else reading this: I used AutoHotKey to remap my own setup. Instructions if you're interested:

  1. Install AutoHotKey
  2. Copy the 4 lines of text that follow this list, paste them into a blank file in Notepad
  3. Save with any file name you want, but ending in ".ahk" instead of ".txt"
  4. Double-click your newly created script, causing it to run in the background (you'll see a green square with an "H" in the system tray, representing the script; just having AutoHotKey installed makes .ahk files executable)
  5. Congratulations! You have temporarily remapped your keys. When you're done, don't forget to close the script to return to normal behavior (right-click the system tray icon > Exit).



SendMode Input

Up::Space

W::Space

E::Enter

Use lower case letters, I assumed all caps and was wrong.