Package net.glowstone.block.blocktype
Class BlockVine
java.lang.Object
net.glowstone.block.itemtype.ItemType
net.glowstone.block.blocktype.BlockType
net.glowstone.block.blocktype.BlockClimbable
net.glowstone.block.blocktype.BlockVine
-
Nested Class Summary
Nested classes/interfaces inherited from class net.glowstone.block.itemtype.ItemType
ItemType.Context -
Field Summary
Fields inherited from class net.glowstone.block.blocktype.BlockType
ADJACENT, drops, placeSound, SIDES, soundGroup -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanCalled when a player attempts to place a block on an existing block of this type.booleancanOverride(GlowBlock block, org.bukkit.block.BlockFace face, org.bukkit.inventory.ItemStack holding) Called to check if this block can be overridden by a block place which would occur inside it.booleancanPlaceAt(GlowPlayer player, GlowBlock block, org.bukkit.block.BlockFace against) Check whether the block can be placed at the given location.booleanCalled to check if this block can perform random tick updates.@NotNull Collection<org.bukkit.inventory.ItemStack>Get the items that will be dropped by digging the block.voidonNearBlockChanged(GlowBlock block, org.bukkit.block.BlockFace face, GlowBlock changedBlock, org.bukkit.Material oldType, byte oldData, org.bukkit.Material newType, byte newData) Called when a neighboring block (within a 3x3x3 cube) has changed its type or data and physics checks should occur.voidplaceBlock(GlowPlayer player, GlowBlockState state, org.bukkit.block.BlockFace face, org.bukkit.inventory.ItemStack holding, org.bukkit.util.Vector clickedLoc) Called when a block is placed to calculate what the block will become.voidupdateBlock(GlowBlock block) Called when this block needs to be updated.voidMethods inherited from class net.glowstone.block.blocktype.BlockClimbable
isTargetOccluding, isTargetOccludingMethods inherited from class net.glowstone.block.blocktype.BlockType
afterDestroy, afterPlace, blockDestroy, blockInteract, createBlockEntity, getCastedBlockData, getMinedDrops, getOppositeBlockFace, getPlaceAs, getPlaceSound, getPulseTickSpeed, getSoundGroup, isPulseOnce, leftClickBlock, onBlockChanged, onEntityStep, onRedstoneUpdate, receivePulse, requestPulse, rightClickBlock, setDrops, setPlaceSound, updatePhysics, warnMaterialDataMethods inherited from class net.glowstone.block.itemtype.ItemType
getContext, getMaterial, getMaterials, getMaxStackSize, rightClickAir, setMaterial, setMaxStackSize, setPlaceAs, setPlaceAs, toString
-
Constructor Details
-
BlockVine
public BlockVine()
-
-
Method Details
-
canPlaceAt
Description copied from class:BlockTypeCheck whether the block can be placed at the given location.- Overrides:
canPlaceAtin classBlockClimbable- Parameters:
player- The player who placed the block.block- The location the block is being placed at.against- The face the block is being placed against.- Returns:
- Whether the placement is valid.
-
placeBlock
public void placeBlock(GlowPlayer player, GlowBlockState state, org.bukkit.block.BlockFace face, org.bukkit.inventory.ItemStack holding, org.bukkit.util.Vector clickedLoc) Description copied from class:BlockTypeCalled when a block is placed to calculate what the block will become.- Overrides:
placeBlockin classBlockType- Parameters:
player- the player who placed the blockstate- the BlockState to editface- the face off which the block is being placedholding- the ItemStack that was being heldclickedLoc- where in the block the click occurred
-
onNearBlockChanged
public void onNearBlockChanged(GlowBlock block, org.bukkit.block.BlockFace face, GlowBlock changedBlock, org.bukkit.Material oldType, byte oldData, org.bukkit.Material newType, byte newData) Description copied from class:BlockTypeCalled when a neighboring block (within a 3x3x3 cube) has changed its type or data and physics checks should occur.- Overrides:
onNearBlockChangedin classBlockType- Parameters:
block- The block to perform physics checks forface- The BlockFace to the changed block, or null if unavailablechangedBlock- The neighboring block that has changedoldType- The old type of the changed blockoldData- The old data of the changed blocknewType- The new type of the changed blocknewData- The new data of the changed block
-
updatePhysicsAfterEvent
- Overrides:
updatePhysicsAfterEventin classBlockType
-
canAbsorb
public boolean canAbsorb(GlowBlock block, org.bukkit.block.BlockFace face, org.bukkit.inventory.ItemStack holding) Description copied from class:BlockTypeCalled when a player attempts to place a block on an existing block of this type. Used to determine if the placement should occur into the air adjacent to the block (normal behavior), or absorbed into the block clicked on. -
canOverride
public boolean canOverride(GlowBlock block, org.bukkit.block.BlockFace face, org.bukkit.inventory.ItemStack holding) Description copied from class:BlockTypeCalled to check if this block can be overridden by a block place which would occur inside it.- Overrides:
canOverridein classBlockType- Parameters:
block- The block being targeted by the placementface- The face on which the click occurredholding- The ItemStack the player was holding- Returns:
- Whether this block can be overridden.
-
getDrops
@NotNull public @NotNull Collection<org.bukkit.inventory.ItemStack> getDrops(GlowBlock block, org.bukkit.inventory.ItemStack tool) Description copied from class:BlockTypeGet the items that will be dropped by digging the block. -
canTickRandomly
public boolean canTickRandomly()Description copied from class:BlockTypeCalled to check if this block can perform random tick updates.- Overrides:
canTickRandomlyin classBlockType- Returns:
- Whether this block updates on tick.
-
updateBlock
Description copied from class:BlockTypeCalled when this block needs to be updated.- Overrides:
updateBlockin classBlockType- Parameters:
block- The block that needs an update
-