Metadatable
public interface Block extends Metadatable
Modifier and Type | Method | Description |
---|---|---|
boolean |
breakNaturally() |
Breaks the block and spawns items as if a player had digged it
|
boolean |
breakNaturally(ItemStack tool) |
Breaks the block and spawns items as if a player had digged it with a
specific tool
|
Biome |
getBiome() |
Returns the biome that this block resides in
|
BlockData |
getBlockData() |
Gets the complete block data for this block
|
int |
getBlockPower() |
Returns the redstone power being provided to this block
|
int |
getBlockPower(BlockFace face) |
Returns the redstone power being provided to this block face
|
BoundingBox |
getBoundingBox() |
Gets the approximate bounding box for this block.
|
Chunk |
getChunk() |
Gets the chunk which contains this block
|
byte |
getData() |
Deprecated.
Magic value
|
Collection<ItemStack> |
getDrops() |
Returns a list of items which would drop by destroying this block
|
Collection<ItemStack> |
getDrops(ItemStack tool) |
Returns a list of items which would drop by destroying this block with
a specific tool
|
BlockFace |
getFace(Block block) |
Gets the face relation of this block compared to the given block.
|
double |
getHumidity() |
Gets the humidity of the biome of this block
|
byte |
getLightFromBlocks() |
Get the amount of light at this block from nearby blocks.
|
byte |
getLightFromSky() |
Get the amount of light at this block from the sky.
|
byte |
getLightLevel() |
Gets the light level between 0-15
|
Location |
getLocation() |
Gets the Location of the block
|
Location |
getLocation(Location loc) |
Stores the location of the block in the provided Location object.
|
PistonMoveReaction |
getPistonMoveReaction() |
Returns the reaction of the block when moved by a piston
|
Block |
getRelative(int modX,
int modY,
int modZ) |
Gets the block at the given offsets
|
Block |
getRelative(BlockFace face) |
Gets the block at the given face
|
Block |
getRelative(BlockFace face,
int distance) |
Gets the block at the given distance of the given face
|
BlockState |
getState() |
Captures the current state of this block.
|
double |
getTemperature() |
Gets the temperature of this block.
|
Material |
getType() |
Gets the type of this block
|
World |
getWorld() |
Gets the world which contains this Block
|
int |
getX() |
Gets the x-coordinate of this block
|
int |
getY() |
Gets the y-coordinate of this block
|
int |
getZ() |
Gets the z-coordinate of this block
|
boolean |
isBlockFaceIndirectlyPowered(BlockFace face) |
Returns true if the block face is being indirectly powered by Redstone.
|
boolean |
isBlockFacePowered(BlockFace face) |
Returns true if the block face is being powered by Redstone.
|
boolean |
isBlockIndirectlyPowered() |
Returns true if the block is being indirectly powered by Redstone.
|
boolean |
isBlockPowered() |
Returns true if the block is being powered by Redstone.
|
boolean |
isEmpty() |
Checks if this block is empty.
|
boolean |
isLiquid() |
Checks if this block is liquid.
|
boolean |
isPassable() |
Checks if this block is passable.
|
RayTraceResult |
rayTrace(Location start,
Vector direction,
double maxDistance,
FluidCollisionMode fluidCollisionMode) |
Performs a ray trace that checks for collision with this specific block
in its current state using its precise collision shape.
|
void |
setBiome(Biome bio) |
Sets the biome that this block resides in
|
void |
setBlockData(BlockData data) |
Sets the complete data for this block
|
void |
setBlockData(BlockData data,
boolean applyPhysics) |
Sets the complete data for this block
Note that applyPhysics = false is not in general safe. |
void |
setType(Material type) |
Sets the type of this block
|
void |
setType(Material type,
boolean applyPhysics) |
Sets the type of this block
Note that applyPhysics = false is not in general safe. |
getMetadata, hasMetadata, removeMetadata, setMetadata
@Deprecated byte getData()
@NotNull BlockData getBlockData()
@NotNull Block getRelative(int modX, int modY, int modZ)
modX
- X-coordinate offsetmodY
- Y-coordinate offsetmodZ
- Z-coordinate offset@NotNull Block getRelative(@NotNull BlockFace face)
This method is equal to getRelative(face, 1)
face
- Face of this block to returngetRelative(BlockFace, int)
@NotNull Block getRelative(@NotNull BlockFace face, int distance)
For example, the following method places water at 100,102,100; two blocks above 100,100,100.
Block block = world.getBlockAt(100, 100, 100); Block shower = block.getRelative(BlockFace.UP, 2); shower.setType(Material.WATER);
face
- Face of this block to returndistance
- Distance to get the block at@NotNull Material getType()
byte getLightLevel()
byte getLightFromSky()
Any light given from other sources (such as blocks like torches) will be ignored.
byte getLightFromBlocks()
Any light given from other sources (such as the sun) will be ignored.
@NotNull World getWorld()
int getX()
int getY()
int getZ()
@NotNull Location getLocation()
@Contract("null -> null; !null -> !null") @Nullable Location getLocation(@Nullable Location loc)
If the provided Location is null this method does nothing and returns null.
loc
- the location to copy into@NotNull Chunk getChunk()
void setBlockData(@NotNull BlockData data)
data
- new block specific datavoid setBlockData(@NotNull BlockData data, boolean applyPhysics)
Bisected
block. If you are
using a custom populator, then this parameter may also be required to
prevent triggering infinite chunk loads on border blocks. This method
should NOT be used to "hack" physics by placing blocks in impossible
locations. Such blocks are liable to be removed on various events such as
world upgrades. Furthermore setting large amounts of such blocks in close
proximity may overload the server physics engine if an update is
triggered at a later point. If this occurs, the resulting behavior is
undefined.data
- new block specific dataapplyPhysics
- false to cancel physics from the changed blockvoid setType(@NotNull Material type)
type
- Material to change this block tovoid setType(@NotNull Material type, boolean applyPhysics)
Bisected
block. If you are
using a custom populator, then this parameter may also be required to
prevent triggering infinite chunk loads on border blocks. This method
should NOT be used to "hack" physics by placing blocks in impossible
locations. Such blocks are liable to be removed on various events such as
world upgrades. Furthermore setting large amounts of such blocks in close
proximity may overload the server physics engine if an update is
triggered at a later point. If this occurs, the resulting behavior is
undefined.type
- Material to change this block toapplyPhysics
- False to cancel physics on the changed block.@Nullable BlockFace getFace(@NotNull Block block)
For example:
Block current = world.getBlockAt(100, 100, 100);
Block target = world.getBlockAt(100, 101, 100);
current.getFace(target) == BlockFace.Up;
block
- Block to compare against this block@NotNull BlockState getState()
The returned object will never be updated, and you are not guaranteed that (for example) a sign is still a sign after you capture its state.
@NotNull Biome getBiome()
void setBiome(@NotNull Biome bio)
bio
- new Biome type for this blockboolean isBlockPowered()
boolean isBlockIndirectlyPowered()
boolean isBlockFacePowered(@NotNull BlockFace face)
face
- The block faceboolean isBlockFaceIndirectlyPowered(@NotNull BlockFace face)
face
- The block faceint getBlockPower(@NotNull BlockFace face)
face
- the face of the block to query or BlockFace.SELF for the
block itselfint getBlockPower()
boolean isEmpty()
A block is considered empty when getType()
returns Material.AIR
.
boolean isLiquid()
A block is considered liquid when getType()
returns Material.WATER
or Material.LAVA
.
double getTemperature()
If the raw biome temperature without adjusting for height effects is
required then please use World.getTemperature(int, int)
.
double getHumidity()
@NotNull PistonMoveReaction getPistonMoveReaction()
boolean breakNaturally()
boolean breakNaturally(@NotNull ItemStack tool)
tool
- The tool or item in hand used for digging@NotNull Collection<ItemStack> getDrops()
@NotNull Collection<ItemStack> getDrops(@NotNull ItemStack tool)
tool
- The tool or item in hand used for diggingboolean isPassable()
A block is passable if it has no colliding parts that would prevent players from moving through it.
Examples: Tall grass, flowers, signs, etc. are passable, but open doors, fence gates, trap doors, etc. are not because they still have parts that can be collided with.
true
if passable@Nullable RayTraceResult rayTrace(@NotNull Location start, @NotNull Vector direction, double maxDistance, @NotNull FluidCollisionMode fluidCollisionMode)
start
- the start locationdirection
- the ray directionmaxDistance
- the maximum distancefluidCollisionMode
- the fluid collision modenull
if there is no hit@NotNull BoundingBox getBoundingBox()
This isn't exact as some blocks Stairs
contain many bounding boxes to establish their complete form.
Also, the box may not be exactly the same as the collision shape (such as
cactus, which is 16/16 of a block with 15/16 collisional bounds).
This method will return an empty bounding box if the geometric shape of
the block is empty (such as air blocks).
Copyright © 2019. All rights reserved.