Interface BiomeProvider.Factory
- Enclosing interface:
- BiomeProvider
public static interface BiomeProvider.Factory
- 
Method SummaryModifier and TypeMethodDescription<T extends CheckerboardBiomeConfig>
 ConfigurableBiomeProvider<T>checkerboard(T config) Returns a checkerboard-style biome provider based on aCheckerboardBiomeConfigend()Returns the vanilla end biome provider.<T extends EndStyleBiomeConfig>
 ConfigurableBiomeProvider<T>endStyle(T config) Returns a vanilla end-style biome provider based on aEndStyleBiomeConfig.fixed(RegistryReference<Biome> biome) Returns a fixed biome provider base on a singleBiome<T extends MultiNoiseBiomeConfig>
 ConfigurableBiomeProvider<T>multiNoise(T config) Returns a multi-noise biome provider based on aMultiNoiseBiomeConfig.nether()Returns the vanilla nether biome provider.Returns the vanilla overworld biome provider.
- 
Method Details- 
overworldConfigurableBiomeProvider<MultiNoiseBiomeConfig> overworld()Returns the vanilla overworld biome provider.- Returns:
- the vanilla overworld biome provider.
 
- 
multiNoiseReturns a multi-noise biome provider based on aMultiNoiseBiomeConfig.- Type Parameters:
- T- the configuration type
- Parameters:
- config- the configuration
- Returns:
- the configured BiomeProvider
 
- 
netherReturns the vanilla nether biome provider.- Returns:
- the vanilla nether biome provider.
 
- 
endStyleReturns a vanilla end-style biome provider based on aEndStyleBiomeConfig.- Type Parameters:
- T- the configuration type
- Parameters:
- config- the configuration
- Returns:
- the configured BiomeProvider
 
- 
endReturns the vanilla end biome provider.- Returns:
- the vanilla end biome provider.
 
- 
checkerboardReturns a checkerboard-style biome provider based on aCheckerboardBiomeConfig- Type Parameters:
- T- the configuration type
- Parameters:
- config- the configuration
- Returns:
- the configured BiomeProvider
 
- 
fixedReturns a fixed biome provider base on a singleBiome- Parameters:
- biome- the biome
- Returns:
- the configured BiomeProvider
 
 
-