类 BlockRedstoneEvent


public class BlockRedstoneEvent extends BlockEvent
当方块接受到的红石信号变化时触发此事件
  • 构造器详细资料

    • BlockRedstoneEvent

      public BlockRedstoneEvent(@NotNull @NotNull Block block, int oldCurrent, int newCurrent)
  • 方法详细资料

    • getOldCurrent

      public int getOldCurrent()
      获取这个方块之前的红石信号强度(0~15).

      原文:Gets the old current of this block

      返回:
      红石信号强度(0~15)
    • getNewCurrent

      public int getNewCurrent()
      获取这个方块收到的红石信号强度将要变成的值(0~15).

      原文:Gets the new current of this block

      返回:
      红石信号强度(0~15)
    • setNewCurrent

      public void setNewCurrent(int newCurrent)
      设置这个方块收到的红石信号强度将要变成的值(0~15).

      原文:Sets the new current of this block

      参数:
      newCurrent - 红石信号强度,取值(0~15)
    • getHandlers

      @NotNull public @NotNull HandlerList getHandlers()
      指定者:
      getHandlers 在类中 Event
    • getHandlerList

      @NotNull public static @NotNull HandlerList getHandlerList()