public interface IWorldGenerator
Modifier and Type | Method and Description |
---|---|
void |
generate(java.util.Random random,
int chunkX,
int chunkZ,
World world,
IChunkGenerator chunkGenerator,
IChunkProvider chunkProvider)
Generate some world
|
void generate(java.util.Random random, int chunkX, int chunkZ, World world, IChunkGenerator chunkGenerator, IChunkProvider chunkProvider)
random
- the chunk specific Random
.chunkX
- the chunk X coordinate of this chunk.chunkZ
- the chunk Z coordinate of this chunk.world
- : additionalData[0] The minecraft World
we're generating for.chunkGenerator
- : additionalData[1] The IChunkProvider
that is generating.chunkProvider
- : additionalData[2] IChunkProvider
that is requesting the world generation.