Package | Description |
---|---|
org.bukkit |
The root package of the Bukkit API, contains generalized API classes.
|
org.bukkit.generator |
Classes to facilitate
world generation
implementation. |
Modifier and Type | Interface and Description |
---|---|
interface |
World
Represents a world, which may contain entities, chunks and blocks
|
Modifier and Type | Method and Description |
---|---|
void |
ChunkGenerator.generateBedrock(WorldInfo worldInfo,
Random random,
int x,
int z,
ChunkGenerator.ChunkData chunkData)
Shapes the Chunk bedrock layer for the given coordinates.
|
void |
ChunkGenerator.generateCaves(WorldInfo worldInfo,
Random random,
int x,
int z,
ChunkGenerator.ChunkData chunkData)
Shapes the Chunk caves for the given coordinates.
|
void |
ChunkGenerator.generateNoise(WorldInfo worldInfo,
Random random,
int x,
int z,
ChunkGenerator.ChunkData chunkData)
Shapes the Chunk noise for the given coordinates.
|
void |
ChunkGenerator.generateSurface(WorldInfo worldInfo,
Random random,
int x,
int z,
ChunkGenerator.ChunkData chunkData)
Shapes the Chunk surface for the given coordinates.
|
int |
ChunkGenerator.getBaseHeight(WorldInfo worldInfo,
Random random,
int x,
int z,
HeightMap heightMap)
This method is similar to
World.getHighestBlockAt(int, int, HeightMap) . |
abstract Biome |
BiomeProvider.getBiome(WorldInfo worldInfo,
int x,
int y,
int z)
Return the Biome which should be present at the provided location.
|
abstract List<Biome> |
BiomeProvider.getBiomes(WorldInfo worldInfo)
Returns a list with every biome the
BiomeProvider will use for
the given world. |
BiomeProvider |
ChunkGenerator.getDefaultBiomeProvider(WorldInfo worldInfo)
Gets called when no
BiomeProvider is set in
WorldCreator or via the server configuration files. |
void |
BlockPopulator.populate(WorldInfo worldInfo,
Random random,
int x,
int z,
LimitedRegion limitedRegion)
Populates an area of blocks at or around the given chunk.
|
Copyright © 2022. All rights reserved.