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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Biome
getBiome(int x, int z)
Get biome at x, z within chunk being generatedvoid
setBiome(int x, int z, Biome bio)
Set biome at x, z within chunk being generated
-
-
-
Method Detail
-
getBiome
@NotNull Biome getBiome(int x, int z)
Get biome at x, z within chunk being generated- Parameters:
x
- - 0-15z
- - 0-15- Returns:
- Biome value
-
setBiome
void setBiome(int x, int z, @NotNull Biome bio)
Set biome at x, z within chunk being generated- Parameters:
x
- - 0-15z
- - 0-15bio
- - Biome value
-
-