FillingRecipe
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.FillingRecipe;
Extends
FillingRecipe extends ProcessingRecipe<RecipeWrapper>
.
Implements
FillingRecipe
implements the following interfaces:
IAssemblyRecipe
,Recipe<Container>
Members
Getter
myFillingRecipe.fluidIngredients
Return Type:
List<FluidIngredient>
fluidIngredients() as List<FluidIngredient>
Getter
myFillingRecipe.fluidResults
Return Type:
List<IFluidStack>
fluidResults() as List<IFluidStack>
Getter
// FillingRecipe.processingDuration as intmyFillingRecipe.processingDuration
Return Type:
int
processingDuration() as int
// FillingRecipe.processingDuration() as int;myFillingRecipe.processingDuration();
Return Type:
int
Getter
// FillingRecipe.requiredFluid as FluidIngredientmyFillingRecipe.requiredFluid
Return Type:
FluidIngredient
requiredFluid() as FluidIngredient
Getter
// FillingRecipe.requiredHeat as HeatConditionmyFillingRecipe.requiredHeat
Return Type:
HeatCondition
requiredHeat() as HeatCondition
Getter
myFillingRecipe.rollableResults
Return Type:
List<ProcessingOutput>
rollableResults() as List<ProcessingOutput>
Getter
myFillingRecipe.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
// FillingRecipe.supportsAssembly as boolmyFillingRecipe.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.
// FillingRecipe.supportsAssembly() as bool;myFillingRecipe.supportsAssembly();
Return Type:
bool