コード例 #1
0
ファイル: BlockPumpkin.java プロジェクト: MineHQ/mc-dev-1.8.7
  protected ShapeDetector getDetectorSnowGolemPart() {
    if (this.snowGolemPart == null) {
      this.snowGolemPart =
          ShapeDetectorBuilder.a()
              .a(new String[] {" ", "#", "#"})
              .a('#', ShapeDetectorBlock.a(BlockStatePredicate.a(Blocks.SNOW)))
              .b();
    }

    return this.snowGolemPart;
  }
コード例 #2
0
ファイル: BlockPumpkin.java プロジェクト: MineHQ/mc-dev-1.8.7
  protected ShapeDetector getDetectorIronGolemPart() {
    if (this.ironGolemPart == null) {
      this.ironGolemPart =
          ShapeDetectorBuilder.a()
              .a(new String[] {"~ ~", "###", "~#~"})
              .a('#', ShapeDetectorBlock.a(BlockStatePredicate.a(Blocks.IRON_BLOCK)))
              .a('~', ShapeDetectorBlock.a(BlockStatePredicate.a(Blocks.AIR)))
              .b();
    }

    return this.ironGolemPart;
  }