JeiRecipeGraphics
Link to jeirecipegraphics
Allows a JeiRecipe to request additional graphic capabilities to its parent JeiCategory.
Support for the various methods available depends on the category to which the recipe is being added to. Refer to the category documentation for more information. Namely, categories need not support nor acknowledge any of the requests specified by a recipe if they do not desire to do so.
导入类
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.recipe.JeiRecipeGraphics;
使用方式
Link to 使用方式
Name: addTooltip
Sets the tooltip identified by the given key to the given set of components.
Return Type: void
ZenScript CopyJeiRecipeGraphics.addTooltip(key as string, lines as Component[]) as void
参数 | 类型 | 描述 |
---|---|---|
参数 key | 类型 string | 描述 The key that identifies the tooltip. |
参数 lines | 类型 Component[] | 描述 The components that make up the tooltip. |
Name: addTooltip
Asks the category to render a tooltip with the given components as lines when the cursor is in the active area indicated by the given coordinates and with the given width and height.
Return Type: void
ZenScript CopyJeiRecipeGraphics.addTooltip(x as int, y as int, activeAreaWidth as int, activeAreaHeight as int, lines as Component[]) as void
参数 | 类型 | 描述 |
---|---|---|
参数 x | 类型 int | 描述 The x coordinate of the top-left corner of the active area rectangle. |
参数 y | 类型 int | 描述 The y coordinate of the top-left corner of the active area rectangle. |
参数 activeAreaWidth | 类型 int | 描述 The width of the active area rectangle. |
参数 activeAreaHeight | 类型 int | 描述 The height of the active area rectangle. |
参数 lines | 类型 Component[] | 描述 The components that make up the tooltip. |
Name: setExtraComponent
Sets the value of the extra component identified by the given key to the component specified.
Return Type: void
ZenScript CopyJeiRecipeGraphics.setExtraComponent(key as string, component as Component) as void
参数 | 类型 | 描述 |
---|---|---|
参数 key | 类型 string | 描述 The key that identifies the extra component. |
参数 component | 类型 Component | 描述 The component to set. |
Name: showShapelessMarker
Shows a shapeless marker for the current recipe, if possible.
Return Type: void
ZenScript Copy// JeiRecipeGraphics.showShapelessMarker() as void
myJeiRecipeGraphics.showShapelessMarker();