Package net.glowstone.block.blocktype
Class BlockLeaves
java.lang.Object
net.glowstone.block.itemtype.ItemType
net.glowstone.block.blocktype.BlockType
net.glowstone.block.blocktype.BlockLeaves
-
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 TypeMethodDescriptionvoidblockDestroy(GlowPlayer player, GlowBlock block, org.bukkit.block.BlockFace face) Called when a player attempts to destroy a block.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.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.Methods inherited from class net.glowstone.block.blocktype.BlockType
afterDestroy, afterPlace, blockInteract, canAbsorb, canOverride, canPlaceAt, createBlockEntity, getCastedBlockData, getMinedDrops, getOppositeBlockFace, getPlaceAs, getPlaceSound, getPulseTickSpeed, getSoundGroup, isPulseOnce, leftClickBlock, onBlockChanged, onEntityStep, onNearBlockChanged, onRedstoneUpdate, receivePulse, requestPulse, rightClickBlock, setDrops, setPlaceSound, updatePhysics, updatePhysicsAfterEvent, warnMaterialDataMethods inherited from class net.glowstone.block.itemtype.ItemType
getContext, getMaterial, getMaterials, getMaxStackSize, rightClickAir, setMaterial, setMaxStackSize, setPlaceAs, setPlaceAs, toString
-
Constructor Details
-
BlockLeaves
public BlockLeaves()
-
-
Method Details
-
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
-
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.
-
blockDestroy
Description copied from class:BlockTypeCalled when a player attempts to destroy a block.- Overrides:
blockDestroyin classBlockType- Parameters:
player- The player interactingblock- The block the player destroyedface- The block face
-
updateBlock
Description copied from class:BlockTypeCalled when this block needs to be updated.- Overrides:
updateBlockin classBlockType- Parameters:
block- The block that needs an update
-