🌲Customizing your biome database

Adding new biome in the database

Inside MassiveWorld/Data, you will find DT_Biome. Open it to see the list of currently available biome. This list is the list used to generate

Biomes and variants.

What is unique about Massive World is not just the ability to spawn biomes but to actually create variations of them. What does that mean?

The biome is the Biome PCG Graph which holds all the visuals of your biome (more on that later).

But you can spawn those biomes with different settings, like a Nordic area with giant trees, another with very small trees and a lot of mushrooms, another with mostly large rocks and a lot of moss on them, etc etc... They all share the same visual, but are placed differently in the world, those are the variation, and it's easy to do!

Simply create a new row, use the same PCG_Biome graph, and change the data in it.

Biome PCG Graph: This leads to the PCG graph used and contains the visual. More on that later.

GroundMaterial: New from Massive World 1.2, you can now attach a ground material to use with your biome. Require RVT and a specific material to mask the landscape (a material instance of M_BiomeTexture). More on that later

Density: Determine the max density.

Min Scale: Min scale of the object spawned.

Max Scale: Max scale of the object spawned.

Spread Distance: Determine how far from the original spawn point the object can spawn. This will also affect the density.

Note: Details are additional objects spawned on the rocks to add more depth to the world.

See Preparing for future updates to avoid losing anything between updates.

Last updated