本文整理匯總了Java中net.minecraft.block.material.MapColor.RED屬性的典型用法代碼示例。如果您正苦於以下問題:Java MapColor.RED屬性的具體用法?Java MapColor.RED怎麽用?Java MapColor.RED使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類net.minecraft.block.material.MapColor
的用法示例。
在下文中一共展示了MapColor.RED屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: BlockMeat
public BlockMeat(String id) {
super(Material.PLANTS, MapColor.RED);
this.setCreativeTab(ThermionicsWorld.TAB_THERMIONICS_WORLD);
this.setHarvestLevel("axe", 0);
this.setHardness(0.75f);
this.setResistance(0.1f);
this.setRegistryName("meat."+id);
this.setUnlocalizedName("thermionics_world.meat."+id);
this.setSoundType(ThermionicsWorld.SOUNDTYPE_SQUISH);
}
示例2: BlockNetherWart
protected BlockNetherWart()
{
super(Material.PLANTS, MapColor.RED);
this.setDefaultState(this.blockState.getBaseState().withProperty(AGE, Integer.valueOf(0)));
this.setTickRandomly(true);
this.setCreativeTab((CreativeTabs)null);
}
示例3: BlockEnchantmentTable
protected BlockEnchantmentTable()
{
super(Material.ROCK, MapColor.RED);
this.setLightOpacity(0);
this.setCreativeTab(CreativeTabs.DECORATIONS);
}