Class BiomeModifications

java.lang.Object
net.fabricmc.fabric.api.biome.v1.BiomeModifications

public final class BiomeModifications extends Object
Provides an API to modify Biomes after they have been loaded and before they are used in the World.

Any modifications made to biomes will not be available for use in server.properties (as of 1.16.1), or the demo level.

Experimental feature, may be removed or changed without further notice.

  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    addCarver(Predicate<BiomeSelectionContext> biomeSelector, net.minecraft.world.gen.GenerationStep.Carver step, net.minecraft.util.registry.RegistryKey<net.minecraft.world.gen.carver.ConfiguredCarver<?>> configuredCarverKey)
    Convenience method to add a carver to one or more biomes.
    static void
    addFeature(Predicate<BiomeSelectionContext> biomeSelector, net.minecraft.world.gen.GenerationStep.Feature step, net.minecraft.util.registry.RegistryKey<net.minecraft.world.gen.feature.PlacedFeature> placedFeatureRegistryKey)
    Convenience method to add a feature to one or more biomes.
    static void
    addSpawn(Predicate<BiomeSelectionContext> biomeSelector, net.minecraft.entity.SpawnGroup spawnGroup, net.minecraft.entity.EntityType<?> entityType, int weight, int minGroupSize, int maxGroupSize)
    Convenience method to add an entity spawn to one or more biomes.
    create(net.minecraft.util.Identifier id)
    Create a new biome modification which will be applied whenever biomes are loaded from datapacks.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • BiomeModifications

      public BiomeModifications()
  • Method Details

    • addFeature

      public static void addFeature(Predicate<BiomeSelectionContext> biomeSelector, net.minecraft.world.gen.GenerationStep.Feature step, net.minecraft.util.registry.RegistryKey<net.minecraft.world.gen.feature.PlacedFeature> placedFeatureRegistryKey)
      Convenience method to add a feature to one or more biomes.
      See Also:
    • addCarver

      public static void addCarver(Predicate<BiomeSelectionContext> biomeSelector, net.minecraft.world.gen.GenerationStep.Carver step, net.minecraft.util.registry.RegistryKey<net.minecraft.world.gen.carver.ConfiguredCarver<?>> configuredCarverKey)
      Convenience method to add a carver to one or more biomes.
      See Also:
    • addSpawn

      public static void addSpawn(Predicate<BiomeSelectionContext> biomeSelector, net.minecraft.entity.SpawnGroup spawnGroup, net.minecraft.entity.EntityType<?> entityType, int weight, int minGroupSize, int maxGroupSize)
      Convenience method to add an entity spawn to one or more biomes.
      See Also:
      • BiomeSelectors
      • SpawnSettings.Builder.spawn(SpawnGroup, SpawnSettings.SpawnEntry)
    • create

      public static BiomeModification create(net.minecraft.util.Identifier id)
      Create a new biome modification which will be applied whenever biomes are loaded from datapacks.
      Parameters:
      id - An identifier for the new set of biome modifications that is returned. Is used for guaranteeing consistent ordering between the biome modifications added by different mods (assuming they otherwise have the same phase).