PressingRecipe
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.PressingRecipe;
Extends
PressingRecipe extends ProcessingRecipe<RecipeWrapper>
.
Implements
PressingRecipe
implements the following interfaces:
IAssemblyRecipe
,Recipe<Container>
Members
Getter
myPressingRecipe.fluidIngredients
Return Type:
List<FluidIngredient>
fluidIngredients() as List<FluidIngredient>
Getter
myPressingRecipe.fluidResults
Return Type:
List<IFluidStack>
fluidResults() as List<IFluidStack>
Getter
// PressingRecipe.processingDuration as intmyPressingRecipe.processingDuration
Return Type:
int
processingDuration() as int
// PressingRecipe.processingDuration() as int;myPressingRecipe.processingDuration();
Return Type:
int
Getter
// PressingRecipe.requiredHeat as HeatConditionmyPressingRecipe.requiredHeat
Return Type:
HeatCondition
requiredHeat() as HeatCondition
Getter
myPressingRecipe.rollableResults
Return Type:
List<ProcessingOutput>
rollableResults() as List<ProcessingOutput>
Getter
myPressingRecipe.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
// PressingRecipe.supportsAssembly as boolmyPressingRecipe.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.
// PressingRecipe.supportsAssembly() as bool;myPressingRecipe.supportsAssembly();
Return Type:
bool