本文整理汇总了Java中cn.nukkit.block.Block.LEAVES属性的典型用法代码示例。如果您正苦于以下问题:Java Block.LEAVES属性的具体用法?Java Block.LEAVES怎么用?Java Block.LEAVES使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类cn.nukkit.block.Block
的用法示例。
在下文中一共展示了Block.LEAVES属性的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: growLeavesLayerStrict
/**
* grow leaves in a circle with the outsides being within the circle
*/
protected void growLeavesLayerStrict(ChunkManager worldIn, Vector3 layerCenter, int width) {
int i = width * width;
for (int j = -width; j <= width + 1; ++j) {
for (int k = -width; k <= width + 1; ++k) {
int l = j - 1;
int i1 = k - 1;
if (j * j + k * k <= i || l * l + i1 * i1 <= i || j * j + i1 * i1 <= i || l * l + k * k <= i) {
Vector3 blockpos = layerCenter.add(j, 0, k);
int id = worldIn.getBlockIdAt((int) blockpos.x, (int) blockpos.y, (int) blockpos.z);
if (id == Block.AIR || id == Block.LEAVES) {
this.setBlockAndNotifyAdequately(worldIn, blockpos, this.leavesMetadata);
}
}
}
}
}
示例2: growLeavesLayer
/**
* grow leaves in a circle
*/
protected void growLeavesLayer(ChunkManager worldIn, Vector3 layerCenter, int width) {
int i = width * width;
for (int j = -width; j <= width; ++j) {
for (int k = -width; k <= width; ++k) {
if (j * j + k * k <= i) {
Vector3 blockpos = layerCenter.add(j, 0, k);
int id = worldIn.getBlockIdAt((int) blockpos.x, (int) blockpos.y, (int) blockpos.z);
if (id == Block.AIR || id == Block.LEAVES) {
this.setBlockAndNotifyAdequately(worldIn, blockpos, this.leavesMetadata);
}
}
}
}
}
示例3: placeLeafAt
private void placeLeafAt(ChunkManager worldIn, Vector3 pos) {
int material = worldIn.getBlockIdAt(pos.getFloorX(), pos.getFloorY(), pos.getFloorZ());
if (material == Block.AIR || material == Block.LEAVES) {
this.setBlockAndNotifyAdequately(worldIn, pos, LEAF);
}
}
示例4: getHighestWorkableBlock
private int getHighestWorkableBlock(int x, int z) {
int y;
for (y = 127; y >= 0; --y) {
int b = this.level.getBlockIdAt(x, y, z);
if (b != Block.AIR && b != Block.LEAVES && b != Block.LEAVES2 && b != Block.SNOW_LAYER) {
break;
}
}
return y == 0 ? -1 : ++y;
}
示例5: getHighestWorkableBlock
private int getHighestWorkableBlock(int x, int z) {
int y;
for (y = 127; y >= 0; --y) {
int b = this.level.getBlockIdAt(x, y, z);
if (b != Block.AIR && b != Block.LEAVES && b != Block.LEAVES2) {
break;
}
}
return y == 0 ? -1 : ++y;
}
示例6: getLeafBlock
@Override
public int getLeafBlock() {
return Block.LEAVES;
}
示例7: getLeafBlock
public int getLeafBlock() {
return Block.LEAVES;
}