Package net.glowstone.block.blocktype
Class BlockFire
java.lang.Object
net.glowstone.block.itemtype.ItemType
net.glowstone.block.blocktype.BlockType
net.glowstone.block.blocktype.BlockNeedsAttached
net.glowstone.block.blocktype.BlockFire
-
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 TypeMethodDescriptionbooleancanOverride(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.booleanCalled to check if this block can perform random tick updates.protected org.bukkit.block.BlockFace@NotNull Collection<org.bukkit.inventory.ItemStack>Get the items that will be dropped by digging the block.intgetPulseTickSpeed(GlowBlock block) The rate at which the block should be pulsed.booleanisPulseOnce(GlowBlock block) Whether the block should only be pulsed once.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.voidreceivePulse(GlowBlock block) Called when the BlockType gets pulsed as requested.voidupdateBlock(GlowBlock block) Called when this block needs to be updated.Methods inherited from class net.glowstone.block.blocktype.BlockNeedsAttached
canAttachTo, canPlaceAt, dropMe, onNearBlockChanged, updatePhysicsAfterEventMethods inherited from class net.glowstone.block.blocktype.BlockType
afterDestroy, afterPlace, blockDestroy, blockInteract, canAbsorb, createBlockEntity, getCastedBlockData, getMinedDrops, getOppositeBlockFace, getPlaceAs, getPlaceSound, getSoundGroup, leftClickBlock, onBlockChanged, onEntityStep, onRedstoneUpdate, 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
-
BlockFire
public BlockFire()
-
-
Method Details
-
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.
-
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. -
getAttachedFace
- Overrides:
getAttachedFacein classBlockNeedsAttached
-
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
-
receivePulse
Description copied from class:BlockTypeCalled when the BlockType gets pulsed as requested.- Overrides:
receivePulsein classBlockType- Parameters:
block- The block that was pulsed
-
getPulseTickSpeed
Description copied from class:BlockTypeThe rate at which the block should be pulsed.- Overrides:
getPulseTickSpeedin classBlockType- Parameters:
block- the block- Returns:
- 0 if the block should not pulse, or a number of ticks between pulses.
-
isPulseOnce
Description copied from class:BlockTypeWhether the block should only be pulsed once.- Overrides:
isPulseOncein classBlockType- Parameters:
block- the block- Returns:
- true if the block should be pulsed once, false otherwise.
-