当前位置: 首页>>代码示例>>Java>>正文


Java Item.LEAVES属性代码示例

本文整理汇总了Java中cn.nukkit.item.Item.LEAVES属性的典型用法代码示例。如果您正苦于以下问题:Java Item.LEAVES属性的具体用法?Java Item.LEAVES怎么用?Java Item.LEAVES使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在cn.nukkit.item.Item的用法示例。


在下文中一共展示了Item.LEAVES属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getDrops

@Override
public int[][] getDrops(Item item) {
    if (item.isShears()) {
        return new int[][]{
                {Item.LEAVES, this.meta & 0x03, 1}
        };
    } else {
        if ((int) ((Math.random()) * 200) == 0 && (this.meta & 0x03) == OAK) {
            return new int[][]{
                    {Item.APPLE, 0, 1}
            };
        }
        if ((int) ((Math.random()) * 20) == 0) {
            return new int[][]{
                    {Item.SAPLING, this.meta & 0x03, 1}
            };
        }
    }
    return new int[0][0];
}
 
开发者ID:FrontierDevs,项目名称:Jenisys3,代码行数:20,代码来源:BlockLeaves.java

示例2: 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;
}
 
开发者ID:Rsplwe,项目名称:Nukkit-Java9,代码行数:7,代码来源:TreeGenerator.java


注:本文中的cn.nukkit.item.Item.LEAVES属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。