Recipe
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.recipe.type.Recipe;
Members
canCraftInDimensions(var1 as int, var2 as int) as bool
myRecipe.canCraftInDimensions(myInt, myInt);
Parameters:
var1: int
Type: int
var2: int
Type: int
Return Type:
bool
Getter
myRecipe.ingredients
Return Type:
List<IIngredient>
ingredients() as List<IIngredient>
Getter
myRecipe.resultItem
Return Type:
IItemStack
resultItem() as IItemStack