public interface IRecipesGui
IJeiRuntime.getRecipesGui()
.Modifier and Type | Method and Description |
---|---|
<V> void |
show(IFocus<V> focus)
Show recipes for an
IFocus . |
void |
showCategories(java.util.List<java.lang.String> recipeCategoryUids)
Show entire categories of recipes.
|
void |
showRecipes(net.minecraftforge.fluids.FluidStack focus)
Deprecated.
Since JEI 3.11.0. Use
show(IFocus) |
void |
showRecipes(net.minecraft.item.ItemStack focus)
Deprecated.
Since JEI 3.11.0. Use
show(IFocus) |
void |
showUses(net.minecraftforge.fluids.FluidStack focus)
Deprecated.
Since JEI 3.11.0. Use
show(IFocus) |
void |
showUses(net.minecraft.item.ItemStack focus)
Deprecated.
Since JEI 3.11.0. Use
show(IFocus) |
<V> void show(IFocus<V> focus)
IFocus
.
Opens the IRecipesGui
if it is closed.IRecipeRegistry.createFocus(IFocus.Mode, Object)
@Deprecated void showRecipes(net.minecraft.item.ItemStack focus)
show(IFocus)
ItemStack
.
Opens the IRecipesGui
if it is closed.focus
- the ItemStack
result.@Deprecated void showRecipes(net.minecraftforge.fluids.FluidStack focus)
show(IFocus)
FluidStack
.
Opens the IRecipesGui
if it is closed.focus
- the FluidStack
result.@Deprecated void showUses(net.minecraft.item.ItemStack focus)
show(IFocus)
ItemStack
as an ingredient.
Opens the IRecipesGui
if it is closed.focus
- the ItemStack
ingredient.@Deprecated void showUses(net.minecraftforge.fluids.FluidStack focus)
show(IFocus)
FluidStack
as an ingredient.
Opens the IRecipesGui
if it is closed.focus
- the FluidStack
ingredient.void showCategories(java.util.List<java.lang.String> recipeCategoryUids)
recipeCategoryUids
- a list of categories to display, in order. Must not be empty.