Uses of Class
org.bukkit.block.Biome
-
Packages that use Biome Package Description org.bukkit The root package of the Bukkit API, contains generalized API classes.org.bukkit.block Classes used to manipulate the voxels in aworld, including special states.org.bukkit.generator Classes to facilitateworldgeneration implementation. -
-
Uses of Biome in org.bukkit
Fields in org.bukkit with type parameters of type Biome Modifier and Type Field Description static Registry<Biome>Registry. BIOMEServer biomes.Methods in org.bukkit that return Biome Modifier and Type Method Description @NotNull BiomeChunkSnapshot. getBiome(int x, int z)Deprecated.biomes are now 3-dimensional@NotNull BiomeChunkSnapshot. getBiome(int x, int y, int z)Get biome at given coordinates@NotNull BiomeWorld. getBiome(int x, int z)Deprecated.biomes are now 3-dimensional@NotNull BiomeWorld. getBiome(int x, int y, int z)Gets the biome for the given block coordinates.Methods in org.bukkit with parameters of type Biome Modifier and Type Method Description voidWorld. setBiome(int x, int y, int z, @NotNull Biome bio)Sets the biome for the given block coordinatesvoidWorld. setBiome(int x, int z, @NotNull Biome bio)Deprecated.biomes are now 3-dimensional -
Uses of Biome in org.bukkit.block
Methods in org.bukkit.block that return Biome Modifier and Type Method Description @NotNull BiomeBlock. getBiome()Returns the biome that this block resides instatic BiomeBiome. valueOf(String name)Returns the enum constant of this type with the specified name.static Biome[]Biome. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.bukkit.block with parameters of type Biome Modifier and Type Method Description voidBlock. setBiome(@NotNull Biome bio)Sets the biome that this block resides in -
Uses of Biome in org.bukkit.generator
Methods in org.bukkit.generator that return Biome Modifier and Type Method Description @NotNull BiomeChunkGenerator.BiomeGrid. getBiome(int x, int z)Deprecated.biomes are now 3-dimensional@NotNull BiomeChunkGenerator.BiomeGrid. getBiome(int x, int y, int z)Get biome at x, z within chunk being generatedMethods in org.bukkit.generator with parameters of type Biome Modifier and Type Method Description voidChunkGenerator.BiomeGrid. setBiome(int x, int y, int z, @NotNull Biome bio)Set biome at x, z within chunk being generatedvoidChunkGenerator.BiomeGrid. setBiome(int x, int z, @NotNull Biome bio)Deprecated.biomes are now 3-dimensional
-