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 the demo level.

  • Method Details Link icon

    • addFeature Link icon

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

      public static void addCarver(Predicate<BiomeSelectionContext> biomeSelector, RegistryKey<ConfiguredCarver<?>> configuredCarverKey)
      Convenience method to add a carver to one or more biomes.
      See Also:
    • addSpawn Link icon

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

      public static BiomeModification create(Identifier id)
      Creates a new biome modification which will be applied whenever biomes are loaded from data packs.
      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).