Skip to main content

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

Very fun game! Able to figure out all 25. I wish this is playable on mobile with touch controls, but oh well.

(+1)(-1)

Unfortunately with the way I implemented mouse controls, it disables swipe movement on mobile. If anyone knows of a way to preserve movement on the mobile version while still having moue controls, let me know!

You can have "tap to move" navigation, like this:

```

Up    [ Player | LClick TapTarget ] -> [ Up Player | TapTarget ]

Down  [ Player | LClick TapTarget ] -> [ Down Player | TapTarget ]

Left  [ Player | LClick TapTarget ] -> [ Left Player | TapTarget ]

Right [ Player | LClick TapTarget ] -> [ Right Player | TapTarget ]

```

and define as TapTarget as anything you can move to (bg, crate, etc.)