Interface ChunkGenerator
-
- All Known Subinterfaces:
ConfigurableChunkGenerator<T>
public interface ChunkGenerator
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ChunkGenerator.Factory
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description BiomeProvider
biomeProvider()
static <T extends FlatGeneratorConfig>
ConfigurableChunkGenerator<T>flat(T config)
static <T extends NoiseGeneratorConfig>
ConfigurableChunkGenerator<T>noise(BiomeProvider provider, long seed, T config)
static <T extends NoiseGeneratorConfig>
ConfigurableChunkGenerator<T>noise(BiomeProvider provider, String seed, T config)
static <T extends NoiseGeneratorConfig>
ConfigurableChunkGenerator<T>noise(BiomeProvider provider, T config)
static ConfigurableChunkGenerator<NoiseGeneratorConfig>
overworld()
StructureGenerationConfig
structureConfig()
static ConfigurableChunkGenerator<NoiseGeneratorConfig>
theEnd()
static ConfigurableChunkGenerator<NoiseGeneratorConfig>
theNether()
-
-
-
Method Detail
-
flat
static <T extends FlatGeneratorConfig> ConfigurableChunkGenerator<T> flat(T config)
-
noise
static <T extends NoiseGeneratorConfig> ConfigurableChunkGenerator<T> noise(BiomeProvider provider, T config)
-
noise
static <T extends NoiseGeneratorConfig> ConfigurableChunkGenerator<T> noise(BiomeProvider provider, long seed, T config)
-
noise
static <T extends NoiseGeneratorConfig> ConfigurableChunkGenerator<T> noise(BiomeProvider provider, String seed, T config)
-
overworld
static ConfigurableChunkGenerator<NoiseGeneratorConfig> overworld()
-
theNether
static ConfigurableChunkGenerator<NoiseGeneratorConfig> theNether()
-
theEnd
static ConfigurableChunkGenerator<NoiseGeneratorConfig> theEnd()
-
biomeProvider
BiomeProvider biomeProvider()
-
structureConfig
StructureGenerationConfig structureConfig()
-
-