public abstract class BlockPopulator
extends java.lang.Object
For example, generating glowstone inside the nether or generating dungeons full of treasure
Constructor | Description |
---|---|
BlockPopulator() |
Modifier and Type | Method | Description |
---|---|---|
abstract void |
populate(World world,
java.util.Random random,
Chunk source) |
Populates an area of blocks at or around the given chunk.
|
public abstract void populate(World world, java.util.Random random, Chunk source)
The chunks on each side of the specified chunk must already exist; that is, there must be one north, east, south and west of the specified chunk. The "corner" chunks may not exist, in which scenario the populator should record any changes required for those chunks and perform the changes when they are ready.
world
- The world to generate inrandom
- The random generator to usesource
- The chunk to generate forCopyright © 2018. All rights reserved.