当前位置: 首页>>代码示例>>Java>>正文


Java InfusionRecipe.getRecipeInput方法代码示例

本文整理汇总了Java中thaumcraft.api.crafting.InfusionRecipe.getRecipeInput方法的典型用法代码示例。如果您正苦于以下问题:Java InfusionRecipe.getRecipeInput方法的具体用法?Java InfusionRecipe.getRecipeInput怎么用?Java InfusionRecipe.getRecipeInput使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在thaumcraft.api.crafting.InfusionRecipe的用法示例。


在下文中一共展示了InfusionRecipe.getRecipeInput方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: ResearchPage

import thaumcraft.api.crafting.InfusionRecipe; //导入方法依赖的package包/类
/**
 * @param recipe
 *        an infusion crafting recipe.
 */
public ResearchPage(InfusionRecipe recipe) {
	this.type = PageType.INFUSION_CRAFTING;
	this.recipe = recipe;
	if (recipe.getRecipeOutput() instanceof ItemStack) {
		this.recipeOutput = (ItemStack) recipe.getRecipeOutput();
	}
	else {
		this.recipeOutput = recipe.getRecipeInput();
	}
}
 
开发者ID:PrincessRTFM,项目名称:TweakCraft,代码行数:15,代码来源:ResearchPage.java

示例2: ResearchPage

import thaumcraft.api.crafting.InfusionRecipe; //导入方法依赖的package包/类
/**
 * @param recipe an infusion crafting recipe.
 */
public ResearchPage(InfusionRecipe recipe) {
	this.type = PageType.INFUSION_CRAFTING;
	this.recipe = recipe;
	if (recipe.getRecipeOutput() instanceof ItemStack) {
		this.recipeOutput = (ItemStack) recipe.getRecipeOutput();
	} else {
		this.recipeOutput = recipe.getRecipeInput();
	}
}
 
开发者ID:Brandomine,项目名称:Augury,代码行数:13,代码来源:ResearchPage.java

示例3: ResearchPage

import thaumcraft.api.crafting.InfusionRecipe; //导入方法依赖的package包/类
/**
 * @param recipe an infusion crafting recipe.
 */
public ResearchPage(InfusionRecipe recipe)
{
    this.type = PageType.INFUSION_CRAFTING;
    this.recipe = recipe;
    if(recipe.getRecipeOutput() instanceof ItemStack)
    {
        this.recipeOutput = (ItemStack) recipe.getRecipeOutput();
    }
    else
    {
        this.recipeOutput = recipe.getRecipeInput();
    }
}
 
开发者ID:J3FF97,项目名称:Steel-Industries,代码行数:17,代码来源:ResearchPage.java

示例4: ResearchPage

import thaumcraft.api.crafting.InfusionRecipe; //导入方法依赖的package包/类
/**
 * @param recipe an infusion crafting recipe.
 */
public ResearchPage(InfusionRecipe recipe) {
    this.type = PageType.INFUSION_CRAFTING;
    this.recipe = recipe;
    if (recipe.getRecipeOutput() instanceof ItemStack) {
        this.recipeOutput = (ItemStack) recipe.getRecipeOutput();
    } else {
        this.recipeOutput = recipe.getRecipeInput();
    }
}
 
开发者ID:AgileMods,项目名称:MateriaMuto,代码行数:13,代码来源:ResearchPage.java

示例5: checkDupe

import thaumcraft.api.crafting.InfusionRecipe; //导入方法依赖的package包/类
private boolean checkDupe(InfusionRecipe recipe) {
	for (Object o : this.arecipes.toArray()){
		if (o instanceof CachedInfusionRecipe){
			CachedInfusionRecipe r = (CachedInfusionRecipe) o;
			if (r.recipe.getRecipeInput() == recipe.getRecipeInput()){
				if (r.recipe.getRecipeOutput().equals(recipe.getRecipeOutput())) {
					return false;
				}
			}
		}
	}
	return true;
}
 
开发者ID:austinv11,项目名称:Thaumic-NEI,代码行数:14,代码来源:InfusionHandler.java

示例6: ResearchPage

import thaumcraft.api.crafting.InfusionRecipe; //导入方法依赖的package包/类
/**
 * @param recipe
 *            an infusion crafting recipe.
 */
public ResearchPage(InfusionRecipe recipe) {
	this.type = PageType.INFUSION_CRAFTING;
	this.recipe = recipe;
	if (recipe.getRecipeOutput() instanceof ItemStack) {
		this.recipeOutput = (ItemStack) recipe.getRecipeOutput();
	} else {
		this.recipeOutput = recipe.getRecipeInput();
	}
}
 
开发者ID:jaredlll08,项目名称:MysticalTrinkets,代码行数:14,代码来源:ResearchPage.java


注:本文中的thaumcraft.api.crafting.InfusionRecipe.getRecipeInput方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。