Back in Chapter 2, we learned that randomization takes a couple forms in game development. The first and most common is randomization where we don’t explicitly control the seed used. That’s what we used to randomize the behavior of the nodes in that chapter.
The second form of randomization is where we know what the seed is, and we can control it to some extent. Minecraft is a great example of this, because each level starts with an input where you can specify a seed.
Seeding can be a bit confusing, but ...