CuttingRecipe
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 mods.createtweaker.CuttingRecipe;
Extends
CuttingRecipe extends ProcessingRecipe<RecipeWrapper>
.
Implements
CuttingRecipe
implements the following interfaces:
IAssemblyRecipe
,Recipe<Container>
Members
Getter
myCuttingRecipe.fluidIngredients
Return Type:
List<FluidIngredient>
fluidIngredients() as List<FluidIngredient>
Getter
myCuttingRecipe.fluidResults
Return Type:
List<IFluidStack>
fluidResults() as List<IFluidStack>
Getter
// CuttingRecipe.processingDuration as intmyCuttingRecipe.processingDuration
Return Type:
int
processingDuration() as int
// CuttingRecipe.processingDuration() as int;myCuttingRecipe.processingDuration();
Return Type:
int
Getter
// CuttingRecipe.requiredHeat as HeatConditionmyCuttingRecipe.requiredHeat
Return Type:
HeatCondition
requiredHeat() as HeatCondition
Getter
myCuttingRecipe.rollableResults
Return Type:
List<ProcessingOutput>
rollableResults() as List<ProcessingOutput>
Getter
myCuttingRecipe.rollableResultsAsItemStacks
Return Type:
List<IItemStack>
rollableResultsAsItemStacks() as List<IItemStack>
rollResults() as List<IItemStack>
Getter
Does this recipe support being used in assembly processing.script.zs
// CuttingRecipe.supportsAssembly as boolmyCuttingRecipe.supportsAssembly
Return Type:
bool
supportsAssembly() as bool
Does this recipe support being used in assembly processing.script.zs
Returns: True if it is supported. False otherwise.
// CuttingRecipe.supportsAssembly() as bool;myCuttingRecipe.supportsAssembly();
Return Type:
bool