Class BlockNote


public class BlockNote extends BlockType
  • Field Details

  • Constructor Details

    • BlockNote

      public BlockNote()
  • Method Details

    • blockInteract

      public boolean blockInteract(GlowPlayer player, GlowBlock block, org.bukkit.block.BlockFace face, org.bukkit.util.Vector clickedLoc)
      Description copied from class: BlockType
      Called when a player attempts to interact with (right-click) a block of this type already in the world.
      Overrides:
      blockInteract in class BlockType
      Parameters:
      player - the player interacting
      block - the block interacted with
      face - the clicked face
      clickedLoc - where in the block the click occurred
      Returns:
      Whether the interaction occurred.
    • getNoteBlockData

      public org.bukkit.block.data.type.NoteBlock getNoteBlockData(GlowBlock block)
    • playBlock

      public boolean playBlock(GlowBlock block)
    • updateInstrument

      public void updateInstrument(GlowBlock block)
    • leftClickBlock

      public void leftClickBlock(GlowPlayer player, GlowBlock block, org.bukkit.inventory.ItemStack holding)
      Description copied from class: BlockType
      Called when a player left clicks a block.
      Overrides:
      leftClickBlock in class BlockType
      Parameters:
      player - the player who clicked the block
      block - the block that was clicked
      holding - the ItemStack that was being held
    • afterPlace

      public void afterPlace(GlowPlayer player, GlowBlock block, org.bukkit.inventory.ItemStack holding, GlowBlockState oldState)
      Description copied from class: BlockType
      Called after a block has been placed by a player.
      Overrides:
      afterPlace in class BlockType
      Parameters:
      player - the player who placed the block
      block - the block that was placed
      holding - the the ItemStack that was being held
      oldState - The old block state before the block was placed.
    • 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: BlockType
      Called when a neighboring block (within a 3x3x3 cube) has changed its type or data and physics checks should occur.
      Overrides:
      onNearBlockChanged in class BlockType
      Parameters:
      block - The block to perform physics checks for
      face - The BlockFace to the changed block, or null if unavailable
      changedBlock - The neighboring block that has changed
      oldType - The old type of the changed block
      oldData - The old data of the changed block
      newType - The new type of the changed block
      newData - The new data of the changed block
    • updatePhysicsAfterEvent

      public void updatePhysicsAfterEvent(GlowBlock block)
      Overrides:
      updatePhysicsAfterEvent in class BlockType
    • play

      public boolean play(org.bukkit.Instrument instrument, org.bukkit.Note note, GlowBlock block)