Package net.glowstone.block.blocktype
Class BlockBeacon
java.lang.Object
net.glowstone.block.itemtype.ItemType
net.glowstone.block.blocktype.BlockType
net.glowstone.block.blocktype.BlockNeedsTool
net.glowstone.block.blocktype.BlockDirectDrops
net.glowstone.block.blocktype.BlockBeacon
-
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 TypeMethodDescriptionbooleanblockInteract(GlowPlayer player, GlowBlock block, org.bukkit.block.BlockFace face, org.bukkit.util.Vector clickedLoc) Called when a player attempts to interact with (right-click) a block of this type already in the world.createBlockEntity(GlowChunk chunk, int cx, int cy, int cz) Create a new block entity at the given location.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.Methods inherited from class net.glowstone.block.blocktype.BlockDirectDrops
getDrops, getMinedDrops, getNeededMiningToolMethods inherited from class net.glowstone.block.blocktype.BlockNeedsTool
getDropsMethods inherited from class net.glowstone.block.blocktype.BlockType
afterDestroy, afterPlace, blockDestroy, canAbsorb, canOverride, canPlaceAt, canTickRandomly, getCastedBlockData, getOppositeBlockFace, getPlaceAs, getPlaceSound, getSoundGroup, leftClickBlock, onBlockChanged, onEntityStep, onNearBlockChanged, onRedstoneUpdate, requestPulse, rightClickBlock, setDrops, setPlaceSound, updateBlock, updatePhysics, updatePhysicsAfterEvent, warnMaterialDataMethods inherited from class net.glowstone.block.itemtype.ItemType
getContext, getMaterial, getMaterials, getMaxStackSize, rightClickAir, setMaterial, setMaxStackSize, setPlaceAs, setPlaceAs, toString
-
Constructor Details
-
BlockBeacon
public BlockBeacon()
-
-
Method Details
-
createBlockEntity
Description copied from class:BlockTypeCreate a new block entity at the given location.- Overrides:
createBlockEntityin classBlockType- Parameters:
chunk- The chunk to create the block entity at.cx- The x coordinate in the chunk.cy- The y coordinate in the chunk.cz- The z coordinate in the chunk.- Returns:
- The new BlockEntity, or null if no block entity is used.
-
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
-
blockInteract
public boolean blockInteract(GlowPlayer player, GlowBlock block, org.bukkit.block.BlockFace face, org.bukkit.util.Vector clickedLoc) Description copied from class:BlockTypeCalled when a player attempts to interact with (right-click) a block of this type already in the world.- Overrides:
blockInteractin classBlockType- Parameters:
player- the player interactingblock- the block interacted withface- the clicked faceclickedLoc- where in the block the click occurred- Returns:
- Whether the interaction occurred.
-
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.
-
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.
-
receivePulse
Description copied from class:BlockTypeCalled when the BlockType gets pulsed as requested.- Overrides:
receivePulsein classBlockType- Parameters:
block- The block that was pulsed
-