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


Java MapColor.QUARTZ屬性代碼示例

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


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

示例1: BlockRoad

public BlockRoad(int level) {
	super(Material.ROCK, MapColor.QUARTZ);
	
	String registryName = "road";
	if (level>0) registryName+="."+level;
	this.setRegistryName(registryName);
	this.setUnlocalizedName("thermionics."+registryName);
	this.setCreativeTab(Thermionics.TAB_THERMIONICS);
	this.setHarvestLevel("pickaxe", 0);
	this.setHardness(1.4f);
	this.setResistance(20f); //somewhat resistant to explosions
	this.level = level;
}
 
開發者ID:elytra,項目名稱:Thermionics,代碼行數:13,代碼來源:BlockRoad.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 OAK:
                default:
                    return BlockPlanks.EnumType.SPRUCE.getMapColor();

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

                case BIRCH:
                    return MapColor.QUARTZ;

                case JUNGLE:
                    return BlockPlanks.EnumType.SPRUCE.getMapColor();
            }

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

示例3: 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 OAK:
                default:
                    return BlockPlanks.EnumType.SPRUCE.getMapColor();
                case SPRUCE:
                    return BlockPlanks.EnumType.DARK_OAK.getMapColor();
                case BIRCH:
                    return MapColor.QUARTZ;
                case JUNGLE:
                    return BlockPlanks.EnumType.SPRUCE.getMapColor();
            }

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

示例4: getMapColor

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


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