Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

The game is very fun and I like how it gets more challenging the longer the game goes on. How did you procedurally generate the map? 

The procedural generation is made by tracking the player's movement along the x axis and spawning a new piece in front of it every time it moves 10 unity units. Additionally it has to track where on the y axis to spawn the piece, this is done by adding an offset to the spawn location, for example if the previous piece went upwards then it would add to the offset and the next piece would spawn further up on the y axis, same for if the piece went down, it would subtract from the offset. Hope that makes sense, I can send you the code in an email if you would like to see it. Thanks for the feedback.