本文整理匯總了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;
}