接口 ChunkGenerator.ChunkData
- 封闭类:
- ChunkGenerator
public static interface ChunkGenerator.ChunkData
Data for a Chunk.
- 
方法概要修饰符和类型方法说明getBiome(int x, int y, int z) Get the biome at x, y, z within chunk being generatedgetBlockData(int x, int y, int z) Get the type and data of the block at x, y, z.bytegetData(int x, int y, int z) 已过时。Uses magic valuesintGet the maximum height for this ChunkData.intGet the minimum height for this ChunkData.getType(int x, int y, int z) Get the type of the block at x, y, z.getTypeAndData(int x, int y, int z) Get the type and data of the block at x, y, z.voidSet the block at x,y,z in the chunk data to material.voidSet the block at x,y,z in the chunk data to material.voidsetBlock(int x, int y, int z, @NotNull MaterialData material) Set the block at x,y,z in the chunk data to material.voidSet a region of this chunk from xMin, yMin, zMin (inclusive) to xMax, yMax, zMax (exclusive) to material.voidSet a region of this chunk from xMin, yMin, zMin (inclusive) to xMax, yMax, zMax (exclusive) to material.voidsetRegion(int xMin, int yMin, int zMin, int xMax, int yMax, int zMax, @NotNull MaterialData material) Set a region of this chunk from xMin, yMin, zMin (inclusive) to xMax, yMax, zMax (exclusive) to material.
- 
方法详细资料- 
getMinHeightint getMinHeight()Get the minimum height for this ChunkData.It is not guaranteed that this method will return the same value as WorldInfo.getMinHeight().Setting blocks below this height will do nothing. - 返回:
- the minimum height
 
- 
getMaxHeightint getMaxHeight()Get the maximum height for this ChunkData.It is not guaranteed that this method will return the same value as WorldInfo.getMaxHeight().Setting blocks at or above this height will do nothing. - 返回:
- the maximum height
 
- 
getBiomeGet the biome at x, y, z within chunk being generated- 参数:
- x- the x location in the chunk from 0-15 inclusive
- y- the y location in the chunk from minimum (inclusive) - maxHeight (exclusive)
- z- the z location in the chunk from 0-15 inclusive
- 返回:
- Biome value
 
- 
setBlockSet the block at x,y,z in the chunk data to material. Note: setting blocks outside the chunk's bounds does nothing.- 参数:
- x- the x location in the chunk from 0-15 inclusive
- y- the y location in the chunk from minHeight (inclusive) - maxHeight (exclusive)
- z- the z location in the chunk from 0-15 inclusive
- material- the type to set the block to
 
- 
setBlockSet the block at x,y,z in the chunk data to material. Setting blocks outside the chunk's bounds does nothing.- 参数:
- x- the x location in the chunk from 0-15 inclusive
- y- the y location in the chunk from minHeight (inclusive) - maxHeight (exclusive)
- z- the z location in the chunk from 0-15 inclusive
- material- the type to set the block to
 
- 
setBlockSet the block at x,y,z in the chunk data to material. Setting blocks outside the chunk's bounds does nothing.- 参数:
- x- the x location in the chunk from 0-15 inclusive
- y- the y location in the chunk from minHeight (inclusive) - maxHeight (exclusive)
- z- the z location in the chunk from 0-15 inclusive
- blockData- the type to set the block to
 
- 
setRegionvoid setRegion(int xMin, int yMin, int zMin, int xMax, int yMax, int zMax, @NotNull @NotNull Material material) Set a region of this chunk from xMin, yMin, zMin (inclusive) to xMax, yMax, zMax (exclusive) to material. Setting blocks outside the chunk's bounds does nothing.- 参数:
- xMin- minimum x location (inclusive) in the chunk to set
- yMin- minimum y location (inclusive) in the chunk to set
- zMin- minimum z location (inclusive) in the chunk to set
- xMax- maximum x location (exclusive) in the chunk to set
- yMax- maximum y location (exclusive) in the chunk to set
- zMax- maximum z location (exclusive) in the chunk to set
- material- the type to set the blocks to
 
- 
setRegionvoid setRegion(int xMin, int yMin, int zMin, int xMax, int yMax, int zMax, @NotNull @NotNull MaterialData material) Set a region of this chunk from xMin, yMin, zMin (inclusive) to xMax, yMax, zMax (exclusive) to material. Setting blocks outside the chunk's bounds does nothing.- 参数:
- xMin- minimum x location (inclusive) in the chunk to set
- yMin- minimum y location (inclusive) in the chunk to set
- zMin- minimum z location (inclusive) in the chunk to set
- xMax- maximum x location (exclusive) in the chunk to set
- yMax- maximum y location (exclusive) in the chunk to set
- zMax- maximum z location (exclusive) in the chunk to set
- material- the type to set the blocks to
 
- 
setRegionvoid setRegion(int xMin, int yMin, int zMin, int xMax, int yMax, int zMax, @NotNull @NotNull BlockData blockData) Set a region of this chunk from xMin, yMin, zMin (inclusive) to xMax, yMax, zMax (exclusive) to material. Setting blocks outside the chunk's bounds does nothing.- 参数:
- xMin- minimum x location (inclusive) in the chunk to set
- yMin- minimum y location (inclusive) in the chunk to set
- zMin- minimum z location (inclusive) in the chunk to set
- xMax- maximum x location (exclusive) in the chunk to set
- yMax- maximum y location (exclusive) in the chunk to set
- zMax- maximum z location (exclusive) in the chunk to set
- blockData- the type to set the blocks to
 
- 
getTypeGet the type of the block at x, y, z. Getting blocks outside the chunk's bounds returns air.- 参数:
- x- the x location in the chunk from 0-15 inclusive
- y- the y location in the chunk from minHeight (inclusive) - maxHeight (exclusive)
- z- the z location in the chunk from 0-15 inclusive
- 返回:
- the type of the block or Material.AIR if x, y or z are outside the chunk's bounds
 
- 
getTypeAndDataGet the type and data of the block at x, y, z. Getting blocks outside the chunk's bounds returns air.- 参数:
- x- the x location in the chunk from 0-15 inclusive
- y- the y location in the chunk from minHeight (inclusive) - maxHeight (exclusive)
- z- the z location in the chunk from 0-15 inclusive
- 返回:
- the type and data of the block or the MaterialData for air if x, y or z are outside the chunk's bounds
 
- 
getBlockDataGet the type and data of the block at x, y, z. Getting blocks outside the chunk's bounds returns air.- 参数:
- x- the x location in the chunk from 0-15 inclusive
- y- the y location in the chunk from minHeight (inclusive) - maxHeight (exclusive)
- z- the z location in the chunk from 0-15 inclusive
- 返回:
- the data of the block or the BlockData for air if x, y or z are outside the chunk's bounds
 
- 
getData已过时。Uses magic valuesGet the block data at x,y,z in the chunk data. Getting blocks outside the chunk's bounds returns 0.- 参数:
- x- the x location in the chunk from 0-15 inclusive
- y- the y location in the chunk from minHeight (inclusive) - maxHeight (exclusive)
- z- the z location in the chunk from 0-15 inclusive
- 返回:
- the block data value or air if x, y or z are outside the chunk's bounds
 
 
-