本文整理匯總了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();
}
}
示例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();
}
}
示例3: getMapColor
/**
* Get the MapColor for this Block and the given BlockState
*/
public MapColor getMapColor(IBlockState state)
{
return MapColor.STONE;
}
示例4: BlockCauldron
public BlockCauldron()
{
super(Material.IRON, MapColor.STONE);
this.setDefaultState(this.blockState.getBaseState().withProperty(LEVEL, Integer.valueOf(0)));
}
示例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);
}