Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Thank you for the feedback. The game has only 4 levels. And yes you can get through the 4 level, but it is difficult. 

The keyboard controls is one the most people uses. For my part I can just change my keyboard layout to France layout when needed, so I don't see this as an big issue. This would maybe be different if it was not a jam game. 

Thanks for the answer! Could you release a video showing how you beat level 4, or point to such a video? I really went to the end without making mistakes, so I do not understand what went wrong.

The keyboard controls is one the most people uses.

I know, but it is extremely easy to program in a layout-independent way. It is really only a matter of looking for the keys’ scancodes instead of literal value!

For my part I can just change my keyboard layout to France layout when needed, so I don't see this as an big issue.

It may depend on the operating system, but this can require installing the corresponding layout. (For example, I also have Japanese, Russian, and Hebrew layouts, and I had to install them, which is a somewhat heavy operation — although manageable, granted.) Installing a whole keyboard and switching according to games is really not user-friendly at all compared with the (once again) super easy solution of layout-independent programming.

This would maybe be different if it was not a jam game.

I beg to differ, as the solution is, once again, super-duper easy. For example, in Love2D and SDL2 (to take examples I know, but this is most probably true for other APIs such as in Unreal Engine, which uses C++ just as SDL2 does), this merely amounts to switching to another function!

I think many people do not realize how easy this is, and how this enhances accessibility — especially in a game jam context where you have international participants. So, actually, this is even more important in a game jam to get more playtesters and correct feedback. ;) (As an example, I had a hard time with several games in several game jams because of this, which impacted how I played the games.)