Uses of Interface
org.bukkit.Chunk
Package | Description |
---|---|
org.bukkit |
More generalized classes in the API.
|
org.bukkit.block |
Classes used to manipulate the voxels in a
world ,
including special states. |
org.bukkit.event.world | |
org.bukkit.generator |
Classes to facilitate
world generation
implementation. |
-
Uses of Chunk in org.bukkit
Methods in org.bukkit that return Chunk Modifier and Type Method Description Chunk
Location. getChunk()
Gets the chunk at the represented locationChunk
World. getChunkAt(int x, int z)
Gets theChunk
at the given coordinatesChunk
World. getChunkAt(Block block)
Chunk
World. getChunkAt(Location location)
Chunk[]
World. getLoadedChunks()
Gets an array of all loadedChunk
sMethods in org.bukkit with parameters of type Chunk Modifier and Type Method Description boolean
World. isChunkLoaded(Chunk chunk)
Checks if the specifiedChunk
is loadedvoid
World. loadChunk(Chunk chunk)
Loads the specifiedChunk
boolean
World. unloadChunk(Chunk chunk)
Safely unloads and saves theChunk
at the specified coordinates -
Uses of Chunk in org.bukkit.block
-
Uses of Chunk in org.bukkit.event.world
Fields in org.bukkit.event.world declared as Chunk Modifier and Type Field Description protected Chunk
ChunkEvent. chunk
Methods in org.bukkit.event.world that return Chunk Modifier and Type Method Description Chunk
ChunkEvent. getChunk()
Gets the chunk being loaded/unloadedConstructors in org.bukkit.event.world with parameters of type Chunk Constructor Description ChunkEvent(Chunk chunk)
ChunkLoadEvent(Chunk chunk, boolean newChunk)
ChunkPopulateEvent(Chunk chunk)
ChunkUnloadEvent(Chunk chunk)
-
Uses of Chunk in org.bukkit.generator
Methods in org.bukkit.generator with parameters of type Chunk Modifier and Type Method Description abstract void
BlockPopulator. populate(World world, java.util.Random random, Chunk source)
Populates an area of blocks at or around the given chunk.