本文整理匯總了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;
}
示例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();
}
}
示例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();
}
}
示例4: getMapColor
/**
* Get the MapColor for this Block and the given BlockState
*/
public MapColor getMapColor(IBlockState state)
{
return MapColor.QUARTZ;
}