Exercise – making a procedural pyramid generator
It’s time to put your skills to the test! In this exercise, we’ll be making a procedural pyramid generator.
In Figure 9.15, you will see the end result we’ll try to achieve.
Figure 9.15: The end result
As you can see from Figure 9.15, we’ll be making a procedural pyramid that can be configured in a lot of different shapes. We will be able to procedurally modify how many sides the pyramid has, how high it is, the width of the pyramid, the width of the door, the height of the door, and how many steps tall the door is.
Let’s start by sketching out a rough plan of how we will tackle this Geometry Nodes challenge.
Sketching out the idea
To achieve this pyramid shape, we will first have to create a Cone primitive, which we will shape using a Set Position node to get the distinctive steps.
To create the doors, we start with a Cylinder primitive with the same number...