Comments

Log in with itch.io to leave a comment.

I love mazes!

Some things to potentially improve (just subjective suggestions, feel free to disagree :D):

  1. The maze is tile-based, while the movement is free with quite a large collider for player character. Makes things not very comfortable, especially repeatedly failing to enter a narrow side-passage. I understand that making tile-based animated movement might be not trivial, but maybe reducing the player character’s collider size (like twice) could help?
  2. WASD movement could be more comfortable (ideally with support of non-standard layouts like AZERTY). Click-to-move might also be a good input method.
  3. I have some not very important but still noticeable render order bug, while player changes position, some walls are rendered in different order:
  4. It seems like the algorithm doesn’t generate loops on the map which (especially together with starting on map edge) makes the game a bit too trivial, just follow the “left-hand” rule. Also the exit seems to be generated in a random dead end or corner and can be too close to the entrance (which together with “no-loops” layout of the level may be a bit not fun :)) - IMHO the best option is to have entry and exits as end-points of (one of) the longest existing route on the map (but it might be not trivial to detect such a route).
  5. There seems to be no in-game “pause” menu, e.g. to return to Main Menu and pick a different difficulty level; turn off music, etc.