本文整理匯總了Java中net.minecraft.block.material.MapColor.SAND屬性的典型用法代碼示例。如果您正苦於以下問題:Java MapColor.SAND屬性的具體用法?Java MapColor.SAND怎麽用?Java MapColor.SAND使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類net.minecraft.block.material.MapColor
的用法示例。
在下文中一共展示了MapColor.SAND屬性的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getMapColor
/**
* Get the MapColor for this Block and the given BlockState
*/
public MapColor getMapColor(IBlockState state)
{
switch ((BlockHugeMushroom.EnumType)state.getValue(VARIANT))
{
case ALL_STEM:
return MapColor.CLOTH;
case ALL_INSIDE:
return MapColor.SAND;
case STEM:
return MapColor.SAND;
default:
return super.getMapColor(state);
}
}
示例2: BlockShrubBone
public BlockShrubBone() {
super(Material.ROCK, MapColor.SAND); //Same as BlockBone
this.setRegistryName("shrub.bone");
this.setUnlocalizedName("thermionics_world.shrub.bone");
this.setDefaultState(blockState.getBaseState().withProperty(VARIANT, BoneType.FEMUR));
this.setCreativeTab(ThermionicsWorld.TAB_THERMIONICS_WORLD);
this.setHardness(0.5f);
this.setResistance(10f);
}
示例3: BlockBone
public BlockBone()
{
super(Material.ROCK, MapColor.SAND);
this.setCreativeTab(CreativeTabs.BUILDING_BLOCKS);
this.setHardness(2.0F);
this.setSoundType(SoundType.STONE);
}
示例4: getMapColor
/**
* Get the MapColor for this Block and the given BlockState
*/
public MapColor getMapColor(IBlockState state)
{
switch ((BlockHugeMushroom.EnumType)state.getValue(VARIANT))
{
case ALL_STEM:
return MapColor.CLOTH;
case ALL_INSIDE:
return MapColor.SAND;
case STEM:
return MapColor.SAND;
default:
return super.getMapColor(state);
}
}
示例5: getMapColor
/**
* Get the MapColor for this Block and the given BlockState
*/
public MapColor getMapColor(IBlockState state)
{
return MapColor.SAND;
}