Class BlockCommandBlock

All Implemented Interfaces:
BlockEntityHolder<BlockEntityCommandBlock>, BlockID, IBlockState, IMutableBlockState, AxisAlignedBB, Metadatable, Faceable, Cloneable
Direct Known Subclasses:
BlockCommandBlockChain, BlockCommandBlockRepeating

@PowerNukkitXOnly @Since("1.6.0.0-PNX") public class BlockCommandBlock extends BlockSolidMeta implements Faceable, BlockEntityHolder<BlockEntityCommandBlock>
  • Field Details

  • Constructor Details

    • BlockCommandBlock

      public BlockCommandBlock()
    • BlockCommandBlock

      public BlockCommandBlock(int meta)
  • Method Details

    • getProperties

      public BlockProperties getProperties()
      Description copied from class: Block
      The properties that fully describe all possible and valid states that this block can have.
      Specified by:
      getProperties in interface IBlockState
      Specified by:
      getProperties in class BlockMeta
    • getId

      public int getId()
      Specified by:
      getId in class Block
    • getName

      public String getName()
      Specified by:
      getName in class Block
    • getResistance

      public double getResistance()
      Description copied from class: Block
      控制方块爆炸抗性
      Overrides:
      getResistance in class Block
      Returns:
      方块的爆炸抗性
    • canBePushed

      public boolean canBePushed()
      Overrides:
      canBePushed in class Block
    • toItem

      public Item toItem()
      Overrides:
      toItem in class Block
    • canHarvestWithHand

      public boolean canHarvestWithHand()
      Overrides:
      canHarvestWithHand in class Block
    • isBreakable

      public boolean isBreakable(Item item)
      Overrides:
      isBreakable in class Block
    • getBlockFace

      public BlockFace getBlockFace()
      Specified by:
      getBlockFace in interface Faceable
    • place

      public boolean place(Item item, Block block, Block target, BlockFace face, double fx, double fy, double fz, Player player)
      Description copied from class: Block
      Place and initialize a this block correctly in the world.

      The current instance must have level, x, y, z, and layer properties already set before calling this method.

      Overrides:
      place in class Block
      Parameters:
      item - The item being used to place the block. Should be used as an optional reference, may mismatch the block that is being placed depending on plugin implementations.
      block - The current block that is in the world and is getting replaced by this instance. It has the same x, y, z, layer, and level as this block.
      target - The block that was clicked to create the place action in this block position.
      face - The face that was clicked in the target block
      fx - The detailed X coordinate of the clicked target block face
      fy - The detailed Y coordinate of the clicked target block face
      fz - The detailed Z coordinate of the clicked target block face
      player - The player that is placing the block. May be null.
      Returns:
      true if the block was properly place. The implementation is responsible for reverting any partial change.
    • canBeActivated

      public boolean canBeActivated()
      Overrides:
      canBeActivated in class Block
    • onActivate

      public boolean onActivate(Item item, Player player)
      Overrides:
      onActivate in class Block
    • onUpdate

      public int onUpdate(int type)
      Overrides:
      onUpdate in class Block
    • hasComparatorInputOverride

      public boolean hasComparatorInputOverride()
      Overrides:
      hasComparatorInputOverride in class Block
    • getComparatorInputOverride

      public int getComparatorInputOverride()
      Overrides:
      getComparatorInputOverride in class Block
    • getBlockEntityClass

      @Since("1.4.0.0-PN") @PowerNukkitOnly @NotNull public Class<? extends BlockEntityCommandBlock> getBlockEntityClass()
      Specified by:
      getBlockEntityClass in interface BlockEntityHolder<BlockEntityCommandBlock>
    • getBlockEntityType

      @Since("1.4.0.0-PN") @PowerNukkitOnly @NotNull public String getBlockEntityType()
      Specified by:
      getBlockEntityType in interface BlockEntityHolder<BlockEntityCommandBlock>