City Generator (HDA)
I developed a procedural city generator as a Houdini Digital Asset (HDA), enabling customizable street layouts, building patterns, and asset variations. The system is built entirely in SOPs, using VEX (via attribute wrangles) for geometry manipulation, and the Houdini Python API for parameter automation and interface control.
This tool-driven approach allowed for scalable city generation suitable for games and real-time applications, while deepening my experience with procedural modeling, environment generation, and tool development.
​
Buildings & City Blocks
Each city block is generated by scattering seed points and copying small grids to them. Boolean operations and geometric measurements (area and perimeter) determine where buildings are placed versus where grass or open space should appear.
A custom density map parameter drives building height variation across the city, making it easy to create distinct zones (e.g., dense downtown cores, suburban sprawl).
Building Styles
There are two procedural building styles:
-
Skyscrapers: Tall structures with simpler silhouettes.
-
Smaller buildings: Feature randomly assigned window types from a set of three.
Window size and spacing are fully parameterized, enabling different facade designs across the city.
Trees
In non-building zones of each block, trees of varying sizes are scattered procedurally, adding natural variation and realism to the urban layout.
Roads & Sidewalks
Roads are generated as block borders, while sidewalks are created through edge extrusion. Parameters include:
-
Grid size
-
Number of roads
-
Road and sidewalk thickness
These allow quick iteration on city scale and layout.
Traffic Lights
At each 4-way intersection, a traffic light is automatically generated using point logic and orientation detection.
​