Maze Generator (jam version)
A very simple block maze generator made for the Tool Jam 2021.
You can export the maze in JSON or PNG formats.
JSON is formatted as follows:
[
{
"x": 0, // x coordinate of the block starting top left
"y": 0, // y coordinate of the block starting top left
"isWall": 1, // this block is a wall
"isPath": 0 // this block is part of the exit path
},
...
]

Leave a comment
Log in with itch.io to leave a comment.