SmithingRecipeInput
Link to smithingrecipeinput
Importing the class
Link to importing-the-class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.recipe.input.type.SmithingRecipeInput;
Extending Record
Link to extending-record
SmithingRecipeInput extends Record. That means all methods available in Record are also available in SmithingRecipeInput
Implemented Interfaces
Link to implemented-interfaces
SmithingRecipeInput implements the following interfaces. That means all methods defined in these interfaces are also available in SmithingRecipeInput
Static Methods
Link to static-methods
Name: of
Return Type: SmithingRecipeInput
ZenScript CopySmithingRecipeInput.of(template as IItemStack, base as IItemStack, addition as IItemStack) as SmithingRecipeInput
Parameter | Type |
---|---|
Parameter template | Type IItemStack |
Parameter base | Type IItemStack |
Parameter addition | Type IItemStack |
Properties
Link to properties
Name | Type | Has Getter | Has Setter |
---|---|---|---|
Name addition | Type ItemStack | Has Getter true | Has Setter false |
Name base | Type ItemStack | Has Getter true | Has Setter false |
Name template | Type ItemStack | Has Getter true | Has Setter false |