0
foundry-logo-news

News & Updates

2024-01-27

Foundry Dev Blog #46 - Force Of Nature

Welcome to ‘Foundry Fridays’

Hello again! My name is Jason, the art director of Foundry. In this week’s ‘Foundry Fridays’ dev diary, I’m going to talk about how we create natural looking biomes in our fully procedurally generated landscapes.

First, Let’s Look At The Real World

Using the example biome of our forest in Foundry, the first step to creating a natural look in a procedurally generated landscape is to go outside and find yourself a nice little forest to get lost in :) Or at least research online for some pretty forest photography.

foundry1

As you can see, trees and plants are NOT evenly distributed. Dirt paths and clearings from erosion and other natural factors help break up where foliage grows. Plants also have a tendency to group or clump together based on where and how far the wind carries their seeds. By understanding these basics of what’s observed in nature, we can make some “rules” in our foliage generation system that simulate the natural growth of vegetation in a forest.

Let’s Make Some Noise!

A great way to create paths, clearings and clumps of foliage is to use procedurally generated noise for masking out areas where vegetation spawns. We then use layers to embed different noises within each noise map. With this system, it’s easy to create rules for what types of vegetation should clump and what types of vegetation should always clump close together. The exact placement, scale and rotation of each flower or grass plant is still random within each layer’s noise mask. Combine that with a randomly generated voxel landscape, world generation is unique every time you spawn a new world. All the while looking natural. Here is an illustration that demonstrates how using layers of noise maps works to clump vegetation together.

undry1

Putting It Together, Layer By Layer

In the game, we first build up a biome by adding a main terrain type (in this case with the forest we use a grass surface) and break it up with dirt using a noise mask. This creates areas of clearings and paths where foliage will not grow. We play around with the procedural noise settings until we’re happy with what we’re generating in game.

foudnrfoundry12

It’s also worth noting here that we add a very broad overall noise to lighten/darken areas of terrain to help break up the underlying tiling terrain textures when viewed from a distance. We then add a layer containing trees, large plants and rocks that will only spawn in the grassy textured areas of the landscape voxels.

founrdy4

Within the grassy textured areas, we add another layer with a different noise that creates clumps of grass blades. We can also set a parameter for each vegetation object that determines the likelihood or percentage chance a grass object will spawn per voxel of terrain. Vegetation objects are also randomly rotated, scaled and offset to the voxel they are spawned on to help with more natural clumping.

foundar

Then within the grass clumps noise layer, we use a third noise mask to add clumps of flowers.

ounrdy-24

We can go on and on, but this gives you the basic methodology behind how we generate natural looking, fully procedural worlds!

urndy12founrdy-4founrdy-12founrdy-122

Till Next Time!

I hope you enjoyed this Foundry Friday. As always, if you have any questions, please hit us up on Discord. Thanks for reading!