Invalid leaf directive! `since`

Expansion for JeiCategory

Link to expansion-for-jeicategory

Expands a JeiCategory allowing for registration of JeiRecipes.

Name: addRecipe

Adds a new recipe to the specified category with the given inputs and outputs.

Return Type: void

ZenScript
Copy
JeiCategory.addRecipe(outputs as JeiIngredient[][], inputs as JeiIngredient[][]) as void
ParametroTipoDescrizione
Parametro
outputs
Tipo
JeiIngredient[][]
Descrizione
The outputs of the recipe. Refer to JeiRecipe for more details on the format.
Parametro
inputs
Tipo
JeiIngredient[][]
Descrizione
The inputs of the recipe. Refer to JeiRecipe for more details on the format.

Name: addRecipe

Adds a new recipe to the specified category with the given inputs and outputs and the specified graphics.

Return Type: void

ZenScript
Copy
JeiCategory.addRecipe(outputs as JeiIngredient[][], inputs as JeiIngredient[][], graphics as Consumer<JeiRecipeGraphics>) as void
ParametroTipoDescrizione
Parametro
outputs
Tipo
JeiIngredient[][]
Descrizione
The outputs of the recipe. Refer to JeiRecipe for more details on the format.
Parametro
inputs
Tipo
JeiIngredient[][]
Descrizione
The inputs of the recipe. Refer to JeiRecipe for more details on the format.
Parametro
graphics
Tipo
Consumer<JeiRecipeGraphics>
Descrizione
A consumer for a JeiRecipeGraphics allowing for more integration with the category. Each
category defines a different contract for the graphics, so refer to the category documentation
for more information.