ChunkGenerator - ChunkData Biome (Expression) — SkBee
Addon: SkBee · Category: Expression · Since: 3.5.0
Syntax
chunk[ ]data biomeDescription
Represents the biome in ChunkData. The first pattern is used to set the biome in the `biome gen` section. The second pattern is used to retrieve biomes in the `chunk gen` and `block pop` sections. NOTE: The vector represents the position of the biome in the chunk, not the world.
Examples
biome gen:
set chunkdata biome to plains
chunk gen:
set {_biome} to chunkdata biome at vector(0,0,0)
if {_biome} is plains:
set chunkdata block at vector(0,0,0) to grass[]