本文整理汇总了Java中cn.nukkit.item.Item.DIRT属性的典型用法代码示例。如果您正苦于以下问题:Java Item.DIRT属性的具体用法?Java Item.DIRT怎么用?Java Item.DIRT使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类cn.nukkit.item.Item
的用法示例。
在下文中一共展示了Item.DIRT属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setDirtAt
/**
* sets dirt at a specific location if it isn't already dirt
*/
protected void setDirtAt(ChunkManager level, Vector3 pos) {
if (level.getBlockIdAt((int) pos.x, (int) pos.y, (int) pos.z) != Item.DIRT) {
this.setBlockAndNotifyAdequately(level, pos, new BlockDirt());
}
}
示例2: getDrops
@Override
public int[][] getDrops(Item item) {
return new int[][]{
{Item.DIRT, 0, 1}
};
}
示例3: canGrowInto
/**
* returns whether or not a tree can grow into a block
* For example, a tree will not grow into stone
*/
protected boolean canGrowInto(int id) {
return id == Item.AIR || id == Item.LEAVES || id == Item.GRASS || id == Item.DIRT || id == Item.LOG || id == Item.LOG2 || id == Item.SAPLING || id == Item.VINE;
}