當前位置: 首頁>>代碼示例>>Java>>正文


Java Blocks.golden_rail方法代碼示例

本文整理匯總了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)));
}
 
開發者ID:Domochevsky,項目名稱:minecraft-quiverbow,代碼行數:24,代碼來源:ERA.java

示例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)));
}
 
開發者ID:Domochevsky,項目名稱:minecraft-quiverbow,代碼行數:22,代碼來源:ERA.java

示例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;
}
 
開發者ID:Notoh,項目名稱:DecompiledMinecraft,代碼行數:6,代碼來源:BlockRailBase.java

示例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;
}
 
開發者ID:SkidJava,項目名稱:BaseClient,代碼行數:6,代碼來源:BlockRailBase.java


注:本文中的net.minecraft.init.Blocks.golden_rail方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。