ProcessingRecipe

Link to processingrecipe

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
Copy
import mods.createtweaker.ProcessingRecipe;

Implemented Interfaces

Link to implemented-interfaces

ProcessingRecipe implements the following interfaces. That means all methods defined in these interfaces are also available in ProcessingRecipe

Link to getFluidIngredients

Name: getFluidIngredients

Return Type: stdlib.List<FluidIngredient>

ZenScript
Copy
// ProcessingRecipe.getFluidIngredients() as stdlib.List<FluidIngredient>

myProcessingRecipe.getFluidIngredients();

Name: getFluidResults

Return Type: stdlib.List<IFluidStack>

ZenScript
Copy
// ProcessingRecipe.getFluidResults() as stdlib.List<IFluidStack>

myProcessingRecipe.getFluidResults();

Link to getProcessingDuration

Name: getProcessingDuration

Return Type: int

ZenScript
Copy
// ProcessingRecipe.getProcessingDuration() as int

myProcessingRecipe.getProcessingDuration();

Name: getRequiredHeat

Return Type: HeatCondition

ZenScript
Copy
// ProcessingRecipe.getRequiredHeat() as HeatCondition

myProcessingRecipe.getRequiredHeat();

Link to getRollableResults

Name: getRollableResults

Return Type: stdlib.List<ProcessingOutput>

ZenScript
Copy
// ProcessingRecipe.getRollableResults() as stdlib.List<ProcessingOutput>

myProcessingRecipe.getRollableResults();

Link to getRollableResultsAsItemStacks

Name: getRollableResultsAsItemStacks

Return Type: stdlib.List<IItemStack>

ZenScript
Copy
// ProcessingRecipe.getRollableResultsAsItemStacks() as stdlib.List<IItemStack>

myProcessingRecipe.getRollableResultsAsItemStacks();

Name: rollResults

Return Type: stdlib.List<IItemStack>

ZenScript
Copy
// ProcessingRecipe.rollResults() as stdlib.List<IItemStack>

myProcessingRecipe.rollResults();
이름TypeHas GetterHas SetterDescription
이름
fluidIngredients
Type
stdlib.List<FluidIngredient>
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
fluidResults
Type
stdlib.List<IFluidStack>
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
processingDuration
Type
int
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
requiredHeat
Type
HeatCondition
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
rollableResults
Type
stdlib.List<ProcessingOutput>
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
rollableResultsAsItemStacks
Type
stdlib.List<IItemStack>
Has Getter
true
Has Setter
false
Description
No Description Provided