Defines how a recipe should be mirrored.

Importing the class

Link to importing-the-class

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
Copy
import crafttweaker.api.recipe.MirrorAxis;

MirrorAxis is an enum. It has 5 enum constants. They are accessible using the code below.

ZenScript
Copy

// Mirror the recipe on all axes.
MirrorAxis.ALL

// Mirror the recipe diagonally.
MirrorAxis.DIAGONAL

// Mirror the recipe horizontally.
MirrorAxis.HORIZONTAL

// Do not mirror the recipe.
MirrorAxis.NONE

// Mirror the recipe vertically.
MirrorAxis.VERTICAL

Static Properties

Link to static-properties

名称TypeHas GetterHas SetterDescription
名称
ALL
Type
MirrorAxis
Has Getter
true
Has Setter
false
Description
Mirror the recipe on all axes.
名称
DIAGONAL
Type
MirrorAxis
Has Getter
true
Has Setter
false
Description
Mirror the recipe diagonally.
名称
HORIZONTAL
Type
MirrorAxis
Has Getter
true
Has Setter
false
Description
Mirror the recipe horizontally.
名称
NONE
Type
MirrorAxis
Has Getter
true
Has Setter
false
Description
Do not mirror the recipe.
名称
VERTICAL
Type
MirrorAxis
Has Getter
true
Has Setter
false
Description
Mirror the recipe vertically.