本文整理汇总了Java中cn.nukkit.level.format.FullChunk.getBlockId方法的典型用法代码示例。如果您正苦于以下问题:Java FullChunk.getBlockId方法的具体用法?Java FullChunk.getBlockId怎么用?Java FullChunk.getBlockId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cn.nukkit.level.format.FullChunk
的用法示例。
在下文中一共展示了FullChunk.getBlockId方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getBlockIdAt
import cn.nukkit.level.format.FullChunk; //导入方法依赖的package包/类
@Override
public int getBlockIdAt(int x, int y, int z) {
FullChunk chunk = this.getChunk(x >> 4, z >> 4);
if (chunk != null) {
return chunk.getBlockId(x & 0xf, y & 0xff, z & 0xf);
}
return 0;
}
示例2: getHighestWorkableBlock
import cn.nukkit.level.format.FullChunk; //导入方法依赖的package包/类
private int getHighestWorkableBlock(FullChunk chunk, int x, int z) {
int y;
for (y = 127; y >= 0; y--) {
int b = chunk.getBlockId(x, y, z);
if (b == Block.AIR) {
break;
}
}
return y == 0 ? -1 : y;
}
示例3: getHighestWorkableBlock
import cn.nukkit.level.format.FullChunk; //导入方法依赖的package包/类
private int getHighestWorkableBlock(FullChunk chunk, int x, int z) {
int y;
for (y = 0; y <= 127; ++y) {
int b = chunk.getBlockId(x, y, z);
if (b == Block.AIR) {
break;
}
}
return y == 0 ? -1 : y;
}
示例4: canGroundFireStay
import cn.nukkit.level.format.FullChunk; //导入方法依赖的package包/类
private boolean canGroundFireStay(FullChunk chunk, int x, int y, int z) {
int b = chunk.getBlockId(x, y, z);
return (b == Block.AIR) && chunk.getBlockId(x, y - 1, z) == Block.NETHERRACK;
}