當前位置: 首頁>>代碼示例>>Java>>正文


Java MapColor.STONE屬性代碼示例

本文整理匯總了Java中net.minecraft.block.material.MapColor.STONE屬性的典型用法代碼示例。如果您正苦於以下問題:Java MapColor.STONE屬性的具體用法?Java MapColor.STONE怎麽用?Java MapColor.STONE使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在net.minecraft.block.material.MapColor的用法示例。


在下文中一共展示了MapColor.STONE屬性的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getMapColor

/**
 * Get the MapColor for this Block and the given BlockState
 */
public MapColor getMapColor(IBlockState state)
{
    BlockPlanks.EnumType blockplanks$enumtype = (BlockPlanks.EnumType)state.getValue(VARIANT);

    switch ((BlockLog.EnumAxis)state.getValue(LOG_AXIS))
    {
        case X:
        case Z:
        case NONE:
        default:
            switch (blockplanks$enumtype)
            {
                case ACACIA:
                default:
                    return MapColor.STONE;

                case DARK_OAK:
                    return BlockPlanks.EnumType.DARK_OAK.getMapColor();
            }

        case Y:
            return blockplanks$enumtype.getMapColor();
    }
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:27,代碼來源:BlockNewLog.java

示例2: getMapColor

/**
 * Get the MapColor for this Block and the given BlockState
 */
public MapColor getMapColor(IBlockState state)
{
    BlockPlanks.EnumType blockplanks$enumtype = (BlockPlanks.EnumType)state.getValue(VARIANT);

    switch ((BlockLog.EnumAxis)state.getValue(LOG_AXIS))
    {
        case X:
        case Z:
        case NONE:
        default:

            switch (blockplanks$enumtype)
            {
                case ACACIA:
                default:
                    return MapColor.STONE;
                case DARK_OAK:
                    return BlockPlanks.EnumType.DARK_OAK.getMapColor();
            }

        case Y:
            return blockplanks$enumtype.getMapColor();
    }
}
 
開發者ID:F1r3w477,項目名稱:CustomWorldGen,代碼行數:27,代碼來源:BlockNewLog.java

示例3: getMapColor

/**
 * Get the MapColor for this Block and the given BlockState
 */
public MapColor getMapColor(IBlockState state)
{
    return MapColor.STONE;
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:7,代碼來源:BlockGravel.java

示例4: BlockCauldron

public BlockCauldron()
{
    super(Material.IRON, MapColor.STONE);
    this.setDefaultState(this.blockState.getBaseState().withProperty(LEVEL, Integer.valueOf(0)));
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:5,代碼來源:BlockCauldron.java

示例5: BlockHopper

public BlockHopper()
{
    super(Material.IRON, MapColor.STONE);
    this.setDefaultState(this.blockState.getBaseState().withProperty(FACING, EnumFacing.DOWN).withProperty(ENABLED, Boolean.valueOf(true)));
    this.setCreativeTab(CreativeTabs.REDSTONE);
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:6,代碼來源:BlockHopper.java


注:本文中的net.minecraft.block.material.MapColor.STONE屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。