Procedural Tree Generator in Unity: Scheme

As part of my final project for my Game Tools and Networking course I need to implement a Tree Generator that will add trees to a terrain. I will hopefully finish it before the end of this week! These are some of the properties that will be customized through the editor: Number of trees to…

Implementing a Random Dungeon Generator in Unity: The Tile and Layer Class

Today I want to talk about the implementation for the tile class and layer class I am using to generate rooms for my dungeon generator. Let’s begin with the Tile class, which will be in charge of instantiating a single object (this being a sprite) into a given point in the game’s scene. I decided…