pack.yml.
Available Presets
Biome distribution presets determine which biomes can generate and where they appear. Origen includes several built-in presets:Rearth Preset (Default)
The full Origen experience with all custom biomes enabled.pack.yml
- All custom Origen biomes
- Land, ocean, coastal, and cave biomes
- Special biomes (sinkholes, spot biomes, canyons)
- Balanced biome distribution
Default Preset
A more vanilla-like experience using Terra’s default distribution:pack.yml
Single Biome
Generate a world with only one biome for testing:pack.yml
You’ll need to edit the single.yml preset file to specify which biome to use.
Switching Presets
To switch between presets:- Open
pack.ymlin the root of your Origen directory - Find the
biomes:configuration line - Comment out the current preset by adding
#at the start - Uncomment your desired preset by removing the
#
Example
pack.yml
Population Stages
Population stages control what features generate after the initial terrain. Stages execute from top to bottom chronologically.Default Stages
Here are all the population stages in Origen:pack.yml
Disabling Stages
You can disable any generation stage by commenting it out with#:
Example: No Ores
pack.yml
Example: No Trees or Flora
pack.yml
Customizing Presets
You can create your own distribution preset by copying and modifying an existing one:- Navigate to
biome-distribution/presets/ - Copy an existing preset (e.g.,
rearth.yml) - Rename it (e.g.,
custom.yml) - Edit the biome distribution logic
- Reference it in
pack.yml:
pack.yml
Preset Structure
Biome distribution presets use a pipeline system. Here’s a simplified example:custom.yml
Customizing distribution presets requires understanding Terra’s biome pipeline system. Check the Terra documentation for detailed information.
Common Customization Scenarios
All Land, No Oceans
Modify the continental stage in your preset to always return land biomes:Only Cold Biomes
Modify the temperature stage to only select cold biomes:Specific Biome Mix
Create a custom stage that selects from a limited biome pool:Meta Parameters
Some basic distribution parameters are available inmeta.yml:
meta.yml
- Maximum build height
- Where ocean biomes generate
- Cave biome depth ranges
- Structure placement limits
Testing Your Configuration
- Backup your world before making changes
- Edit pack.yml to change presets or stages
- Create a new world with the modified configuration
- Use creative mode and fly around to quickly evaluate biome distribution
- Check multiple coordinates - Some biomes are rarer than others
- Test over distance - Distribution patterns become clear at scale
Advanced: Pipeline Sources
Distribution presets can reference alternate sources and stages. Check the default preset for examples:biome-distribution/sources/ and reference them in custom presets.
Related Configuration
- Biome Sizes - Control how large biomes generate within the distribution
- Terrain Settings - Affects continental and elevation distribution
- Customization Overview - General guide to Origen’s configuration system
Further Learning
For in-depth customization of biome distribution:- Read the README in
biome-distribution/ - Check out Terra’s biome pipeline documentation
- Examine the existing preset files in
biome-distribution/presets/ - Join the Terra Discord for community support
