本文整理汇总了Java中mezz.jei.api.ingredients.IIngredientBlacklist类的典型用法代码示例。如果您正苦于以下问题:Java IIngredientBlacklist类的具体用法?Java IIngredientBlacklist怎么用?Java IIngredientBlacklist使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IIngredientBlacklist类属于mezz.jei.api.ingredients包,在下文中一共展示了IIngredientBlacklist类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: register
import mezz.jei.api.ingredients.IIngredientBlacklist; //导入依赖的package包/类
@Override
public void register(IModRegistry registry) {
jeiHelpers = registry.getJeiHelpers();
registry.addRecipes(ManaRecipes.recipesList, ManaCraftingCategory.UID);
registry.handleRecipes(ManaCraftingRecipe.class, new IRecipeWrapperFactory<ManaCraftingRecipe>() {
@Override
public IRecipeWrapper getRecipeWrapper(ManaCraftingRecipe recipe) {
return new ManaCraftingWrapper(recipe);
}
}, ManaCraftingCategory.UID);
registry.addRecipeCatalyst(new ItemStack(Blocks.manaCraftingTable), ManaCraftingCategory.UID);
registry.addRecipeClickArea(GuiManaCraftingTable.class, 90, 35, 21, 14, ManaCraftingCategory.UID);
IIngredientBlacklist blacklist = registry.getJeiHelpers().getIngredientBlacklist();
blacklist.addIngredientToBlacklist(new ItemStack(Blocks.researchStoneBrick));
}
开发者ID:Ohrm,项目名称:Malgra,代码行数:22,代码来源:JEIPlugin.java
示例2: register
import mezz.jei.api.ingredients.IIngredientBlacklist; //导入依赖的package包/类
@Override
public void register(IModRegistry registry) {
IIngredientBlacklist blacklist = registry.getJeiHelpers().getIngredientBlacklist();
blacklist.addIngredientToBlacklist(new ItemStack(MooncakeConstants.MOONCAKE_FILLING, 1, 0));
blacklist.addIngredientToBlacklist(new ItemStack(MooncakeConstants.UNSHAPED_MOONCAKE_ITEM, 1, 0));
blacklist.addIngredientToBlacklist(new ItemStack(MooncakeConstants.RAW_MOONCAKE_ITEM, 1, 0));
blacklist.addIngredientToBlacklist(new ItemStack(MooncakeConstants.MOONCAKE_ITEM, 1, 0));
blacklist.addIngredientToBlacklist(new ItemStack(MooncakeConstants.ICON, 1, 0));
}
开发者ID:TeamCovertDragon,项目名称:MooncakeCraft,代码行数:10,代码来源:MooncakeJEICompatibility.java
示例3: register
import mezz.jei.api.ingredients.IIngredientBlacklist; //导入依赖的package包/类
@Override
public void register(IModRegistry registry) {
IJeiHelpers helpers = registry.getJeiHelpers();
registry.addRecipeCategories(new UCRecipeCategory(helpers.getGuiHelper()));
registry.addRecipeHandlers(new UCRecipeHandler());
registry.addRecipes(UCrafting.recipes);
registry.addRecipeCategoryCraftingItem(UCItems.generic.createStack(EnumItems.DUMMYITEM), UCRecipeCategory.NAME);
IIngredientBlacklist blacklist = helpers.getIngredientBlacklist();
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropCinderbella));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropCollis));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropDirigible));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropEnderlily));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropFeroxia));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropInvisibilia));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropKnowledge));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropMaryjane));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropMerlinia));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropMillennium));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropMusica));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropNormal));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropPrecision));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropWeepingbells));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropEula));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropCobblonia));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropDyeius));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropAbstract));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropWafflonia));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropPixelsius));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropArtisia));
blacklist.addIngredientToBlacklist(new ItemStack(UCBlocks.cropDevilsnare));
blacklist.addIngredientToBlacklist(UCItems.generic.createStack(EnumItems.DUMMYITEM));
}
开发者ID:bafomdad,项目名称:uniquecrops,代码行数:36,代码来源:JEIPluginUC.java
注:本文中的mezz.jei.api.ingredients.IIngredientBlacklist类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论