Package org.bukkit.generator
Interface ChunkGenerator.BiomeGrid
- Enclosing class:
- ChunkGenerator
Deprecated.
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
- 
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
 
- 
getBiomeDeprecated.Get biome at x, z within chunk being generated- Parameters:
- x- - 0-15
- y- - world minHeight (inclusive) - world maxHeight (exclusive)
- 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
 
- 
setBiomeDeprecated.Set biome at x, z within chunk being generated- Parameters:
- x- - 0-15
- y- - world minHeight (inclusive) - world maxHeight (exclusive)
- z- - 0-15
- bio- - Biome value
 
 
- 
BiomeProvider