Procedural Tile Level Generation
A 2D tilemap based level generator with many tweakable parameters to change the generation.
Overview
This level generator was used using the Unity tilemap system. It works by painting tiles with various height levels, then cleaning up said height levels to avoid small 1x1 islands. Dirt tiles are then painted over their respective heights, followed by cliffs to separate the different heights. Grass is then painted on the ground, followed by the grass outlines. After props are sprinkled over onto a final tilemap.
All of these have changeable parameters that affect the level generation, such as percentage of map coverage that would be at each height, or total tree coverage.
Another notable feature of this is the data containers created to make laying down the various tiles easy and quick, and making it extremely easy to edit the tile sets in the editor through scriptable objects.