MirrorAxis
Link to mirroraxis
Defines how a recipe should be mirrored.
Импорт класса
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 crafttweaker.api.recipe.MirrorAxis;
Enum Constants
Link to enum-constants
MirrorAxis is an enum. It has 5 enum constants. They are accessible using the code below.
ZenScript Copy
// Mirror the recipe on all axes.
<constant:minecraft:mirroraxis:all>
// Mirror the recipe diagonally.
<constant:minecraft:mirroraxis:diagonal>
// Mirror the recipe horizontally.
<constant:minecraft:mirroraxis:horizontal>
// Do not mirror the recipe.
<constant:minecraft:mirroraxis:none>
// Mirror the recipe vertically.
<constant:minecraft:mirroraxis:vertical>
Static Properties
Link to static-properties
Название | Тип | Имеет Getter | Имеет Setter | Описание |
---|---|---|---|---|
Название ALL | Тип MirrorAxis | Имеет Getter true | Имеет Setter false | Описание Mirror the recipe on all axes. |
Название DIAGONAL | Тип MirrorAxis | Имеет Getter true | Имеет Setter false | Описание Mirror the recipe diagonally. |
Название HORIZONTAL | Тип MirrorAxis | Имеет Getter true | Имеет Setter false | Описание Mirror the recipe horizontally. |
Название NONE | Тип MirrorAxis | Имеет Getter true | Имеет Setter false | Описание Do not mirror the recipe. |
Название VERTICAL | Тип MirrorAxis | Имеет Getter true | Имеет Setter false | Описание Mirror the recipe vertically. |