Package org.bukkit.generator
Interface ChunkGenerator.BiomeGrid
- Enclosing class:
- ChunkGenerator
public static interface ChunkGenerator.BiomeGrid
Interface to biome section for chunk to be generated: initialized with
 default values for world type and seed.
 
Custom generator is free to access and tailor values during generateBlockSections() or generateExtBlockSections().
- 
Method SummaryModifier and Type Method Description BiomegetBiome(int x, int z)Deprecated.biomes are now 3-dimensionalBiomegetBiome(int x, int y, int z)Get biome at x, z within chunk being generatedvoidsetBiome(int x, int y, int z, Biome bio)Set biome at x, z within chunk being generatedvoidsetBiome(int x, int z, Biome bio)Deprecated.biomes are now 3-dimensional
- 
Method Details- 
getBiomeDeprecated.biomes are now 3-dimensionalGet biome at x, z within chunk being generated- Parameters:
- x- - 0-15
- z- - 0-15
- Returns:
- Biome value
 
- 
getBiomeGet biome at x, z within chunk being generated- Parameters:
- x- - 0-15
- y- - 0-255
- z- - 0-15
- Returns:
- Biome value
 
- 
setBiomeDeprecated.biomes are now 3-dimensionalSet biome at x, z within chunk being generated- Parameters:
- x- - 0-15
- z- - 0-15
- bio- - Biome value
 
- 
setBiomeSet biome at x, z within chunk being generated- Parameters:
- x- - 0-15
- y- - 0-255
- z- - 0-15
- bio- - Biome value
 
 
-