JeiIngredient
Link to jeiingredient
Represents any ingredient used in JEI.
JEI identifies as an ingredient everything that can be used in any type of recipe, both as input and as output. Even elements in information boxes are considered ingredients. The JEI user interface renders by default a list of all available ingredients on the right side of any menu.
Most things you interact with in scripts normally can already freely convert to a JEI ingredient without any additional help. Refer to invalid#asJeiIngredient(IFluidStack) and invalid#asJeiIngredient(IItemStack) for more information.
Moreover, other types can automatically convert to an array of JEI ingredients, for even less boilerplate and ease of usage. Refer to invalid#asJeiIngredientArray(com.blamejared.crafttweaker.api.ingredient.IIngredient) and invalid#asJeiIngredientArray(KnownTag) for more information.For mod developers: do not use this class internally, use the generic version.
导入类
Link to 导入类
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 mods.jei.component.JeiIngredient;
已实现的接口
Link to 已实现的接口
JeiIngredient implements the following interfaces. That means all methods defined in these interfaces are also available in JeiIngredient
使用方式
Link to 使用方式
Name: getCommandString
Return Type: string
ZenScript Copy// JeiIngredient.getCommandString() as string
myJeiIngredient.getCommandString();
名称 | 类型 | 可获得 | 可设置 | 描述 |
---|---|---|---|---|
名称 commandString #命令字符串 | 类型 string | 可获得 true | 可设置 false | 描述 No Description Provided |