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


Java Blocks.PUMPKIN_STEM属性代码示例

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


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

示例1: getStemColorMultiplier

private static int getStemColorMultiplier(Block p_getStemColorMultiplier_0_, IBlockAccess p_getStemColorMultiplier_1_, BlockPos p_getStemColorMultiplier_2_, RenderEnv p_getStemColorMultiplier_3_)
{
    CustomColormap customcolormap = stemColors;

    if (p_getStemColorMultiplier_0_ == Blocks.PUMPKIN_STEM && stemPumpkinColors != null)
    {
        customcolormap = stemPumpkinColors;
    }

    if (p_getStemColorMultiplier_0_ == Blocks.MELON_STEM && stemMelonColors != null)
    {
        customcolormap = stemMelonColors;
    }

    if (customcolormap == null)
    {
        return -1;
    }
    else
    {
        int i = p_getStemColorMultiplier_3_.getMetadata();
        return customcolormap.getColor(i);
    }
}
 
开发者ID:sudofox,项目名称:Backmemed,代码行数:24,代码来源:CustomColors.java

示例2: getPlantType

@Override
public net.minecraftforge.common.EnumPlantType getPlantType(net.minecraft.world.IBlockAccess world, BlockPos pos)
{
    if (this == Blocks.WHEAT)          return net.minecraftforge.common.EnumPlantType.Crop;
    if (this == Blocks.CARROTS)        return net.minecraftforge.common.EnumPlantType.Crop;
    if (this == Blocks.POTATOES)       return net.minecraftforge.common.EnumPlantType.Crop;
    if (this == Blocks.MELON_STEM)     return net.minecraftforge.common.EnumPlantType.Crop;
    if (this == Blocks.PUMPKIN_STEM)   return net.minecraftforge.common.EnumPlantType.Crop;
    if (this == Blocks.DEADBUSH)       return net.minecraftforge.common.EnumPlantType.Desert;
    if (this == Blocks.WATERLILY)      return net.minecraftforge.common.EnumPlantType.Water;
    if (this == Blocks.RED_MUSHROOM)   return net.minecraftforge.common.EnumPlantType.Cave;
    if (this == Blocks.BROWN_MUSHROOM) return net.minecraftforge.common.EnumPlantType.Cave;
    if (this == Blocks.NETHER_WART)    return net.minecraftforge.common.EnumPlantType.Nether;
    if (this == Blocks.SAPLING)        return net.minecraftforge.common.EnumPlantType.Plains;
    if (this == Blocks.TALLGRASS)      return net.minecraftforge.common.EnumPlantType.Plains;
    if (this == Blocks.DOUBLE_PLANT)   return net.minecraftforge.common.EnumPlantType.Plains;
    if (this == Blocks.RED_FLOWER)     return net.minecraftforge.common.EnumPlantType.Plains;
    if (this == Blocks.YELLOW_FLOWER)  return net.minecraftforge.common.EnumPlantType.Plains;
    return net.minecraftforge.common.EnumPlantType.Plains;
}
 
开发者ID:F1r3w477,项目名称:CustomWorldGen,代码行数:20,代码来源:BlockBush.java


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