Package net.fabricmc.fabric.api.biome.v1
Interface BiomeModificationContext
@Deprecated public interface BiomeModificationContext
Deprecated.
Allows
Biome properties to be modified.
Experimental feature, may be removed or changed without further notice.
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceBiomeModificationContext.EffectsContextDeprecated.static interfaceBiomeModificationContext.GenerationSettingsContextDeprecated.static interfaceBiomeModificationContext.SpawnSettingsContextDeprecated.static interfaceBiomeModificationContext.WeatherContextDeprecated. -
Method Summary
Modifier and Type Method Description BiomeModificationContext.EffectsContextgetEffects()Deprecated.Returns the modification context for the biomes effects.BiomeModificationContext.GenerationSettingsContextgetGenerationSettings()Deprecated.Returns the modification context for the biomes generation settings.BiomeModificationContext.SpawnSettingsContextgetSpawnSettings()Deprecated.Returns the modification context for the biomes spawn settings.BiomeModificationContext.WeatherContextgetWeather()Deprecated.Returns the modification context for the biomes weather properties.voidsetCategory(net.minecraft.world.biome.Biome.Category category)Deprecated.voidsetDepth(float depth)Deprecated.voidsetScale(float scale)Deprecated.
-
Method Details
-
setDepth
void setDepth(float depth)Deprecated.- See Also:
Biome.getDepth(),Biome.Builder.depth(float)
-
setScale
void setScale(float scale)Deprecated.- See Also:
Biome.getScale(),Biome.Builder.scale(float)
-
setCategory
void setCategory(net.minecraft.world.biome.Biome.Category category)Deprecated.- See Also:
Biome.getCategory(),Biome.Builder.category(Biome.Category)
-
getWeather
BiomeModificationContext.WeatherContext getWeather()Deprecated.Returns the modification context for the biomes weather properties. -
getEffects
BiomeModificationContext.EffectsContext getEffects()Deprecated.Returns the modification context for the biomes effects. -
getGenerationSettings
BiomeModificationContext.GenerationSettingsContext getGenerationSettings()Deprecated.Returns the modification context for the biomes generation settings. -
getSpawnSettings
BiomeModificationContext.SpawnSettingsContext getSpawnSettings()Deprecated.Returns the modification context for the biomes spawn settings.
-