本文整理汇总了Java中net.minecraft.init.Blocks.golden_rail方法的典型用法代码示例。如果您正苦于以下问题:Java Blocks.golden_rail方法的具体用法?Java Blocks.golden_rail怎么用?Java Blocks.golden_rail使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.init.Blocks
的用法示例。
在下文中一共展示了Blocks.golden_rail方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: registerRecipe
import net.minecraft.init.Blocks; //导入方法依赖的package包/类
private void registerRecipe()
{
// Fully loaded
// Alternate item registering method
ItemStack[] input = new ItemStack[9];
// Top row
input[0] = new ItemStack(Item.getItemFromBlock(Blocks.obsidian));
input[1] = new ItemStack(Blocks.golden_rail, 27); // 27 rails
input[2] = new ItemStack(Item.getItemFromBlock(Blocks.obsidian));
// Middle row
input[3] = new ItemStack(Item.getItemFromBlock(Blocks.obsidian));
input[4] = new ItemStack(Item.getItemFromBlock(Blocks.ender_chest));
input[5] = new ItemStack(Item.getItemFromBlock(Blocks.obsidian));
// Bottom row
input[6] = new ItemStack(Item.getItemFromBlock(Blocks.tripwire_hook));
input[7] = new ItemStack(Items.iron_ingot);
input[8] = new ItemStack(Item.getItemFromBlock(Blocks.obsidian));
GameRegistry.addRecipe(new Recipe_ERA(input, new ItemStack(this)));
}
示例2: registerRepair
import net.minecraft.init.Blocks; //导入方法依赖的package包/类
private void registerRepair()
{
ItemStack[] repair = new ItemStack[9];
// Top row
//repair[0] = new ItemStack(Item.getItemFromBlock(Blocks.obsidian));
repair[1] = new ItemStack(Blocks.golden_rail);
//repair[2] = new ItemStack(Item.getItemFromBlock(Blocks.obsidian));
// Middle row
repair[3] = new ItemStack(Blocks.golden_rail);
repair[4] = new ItemStack(this, 1 , this.getMaxDamage());
repair[5] = new ItemStack(Blocks.golden_rail);
// Bottom row
repair[6] = new ItemStack(Items.redstone);
repair[7] = new ItemStack(Items.iron_ingot);
repair[8] = new ItemStack(Items.redstone);
GameRegistry.addRecipe(new Recipe_ERA(repair, new ItemStack(this)));
}
示例3: isRailBlock
import net.minecraft.init.Blocks; //导入方法依赖的package包/类
public static boolean isRailBlock(IBlockState state)
{
Block block = state.getBlock();
return block == Blocks.rail || block == Blocks.golden_rail || block == Blocks.detector_rail || block == Blocks.activator_rail;
}
示例4: isRailBlock
import net.minecraft.init.Blocks; //导入方法依赖的package包/类
public static boolean isRailBlock(IBlockState state) {
Block block = state.getBlock();
return block == Blocks.rail || block == Blocks.golden_rail || block == Blocks.detector_rail
|| block == Blocks.activator_rail;
}