P0-P-172: Part 69: Procedural City Generator
I have started working on one of the last new features in MS1, which is the Procedural City Generator. While researching this feature, I discovered quite a number of other, very well-developed assets on the Unity asset store that solve this problem, so I am not sure at the moment if I want to develop my own solution or purchase one.
What I have decided to do is to implement all of the database and server side code now, and just create a very basic city generator. I will just randomly place, rotate, and scale some buildings.
After some difficulties, I have created a basic grid for the city generator:

13/12/2016 , 10:34:55 PM
Unity Personal (64bit) – P0Main.unity – New Unity Project – PC, Mac & Linux Standalone
I am using simple raycasting for this (The green lines) onto the Space Exploration Engine Terrain. The problem is that the colliders are only activated on the SEE terrain when the player is very close to the terrain chunk, which makes it very difficult to place the city’s buildings.
I have solved the problem for now by simple increasing the distance that the terrain chunks enable their colliders, but this is not ideal.
