Chunk

class Chunk(chunk: MCChunk)

Functions

Link copied to clipboard
fun getAllEntities(): List<Entity>

Gets every entity in this chunk

Link copied to clipboard
fun getAllEntitiesOfType(clazz: Class<*>): List<Entity>

Gets every entity in this chunk of a certain class

Link copied to clipboard
fun getAllTileEntities(): List<TileEntity>

Gets every tile entity in this chunk

Link copied to clipboard
fun getAllTileEntitiesOfType(clazz: Class<*>): List<TileEntity>

Gets every tile entity in this chunk of a certain class

Link copied to clipboard
fun getBlockLightLevel(x: Int, y: Int, z: Int): Int

Gets the block light level at the given position. This is the value seen in the debug (F3) menu

Link copied to clipboard
fun getMinBlockX(): Int

Gets the minimum x coordinate of a block in the chunk

Link copied to clipboard
fun getMinBlockZ(): Int

Gets the minimum z coordinate of a block in the chunk

Link copied to clipboard
fun getSkyLightLevel(x: Int, y: Int, z: Int): Int

Gets the skylight level at the given position. This is the value seen in the debug (F3) menu

Link copied to clipboard
fun getX(): Int

Gets the x position of the chunk

Link copied to clipboard
fun getZ(): Int

Gets the z position of the chunk

Properties

Link copied to clipboard
val chunk: MCChunk

Sources

Link copied to clipboard