Direction
Link to direction
Represents a cardinal direction (north, south, east, west) and (up and down).
This class was added by a mod with mod-id crafttweaker
. So you need to have this mod installed if you want to use this feature.
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.
ZenScript Copycrafttweaker.api.util.Direction
Methods
Link to methods
rotateAround
Link to rotatearound
Rotates this direction around a given Axis
Returns crafttweaker.api.util.Direction
ZenScript Copy<direction:north>.rotateAround(axis as crafttweaker.api.util.DirectionAxis);
<direction:north>.rotateAround(<directionaxis:north>);
Parameter | Type | Description |
---|---|---|
Parameter axis | Type crafttweaker.api.util.DirectionAxis | Description the Axis to rotate around |
rotateY
Link to rotatey
Rotates this direction on the Y axis
Returns: the direction that rotated on the Y axis of this direction
Returns crafttweaker.api.util.Direction
ZenScript Copy<direction:north>.rotateY();
rotateYCCW
Link to rotateyccw
Rotates this direction counter-clock wise on the Y axis
Returns: the direction that is counter clockwise on the Y axis
Returns crafttweaker.api.util.Direction
ZenScript Copy<direction:north>.rotateYCCW();
Properties
Link to properties
名称 | Type | Has Getter | Has Setter |
---|---|---|---|
名称 axis | Type crafttweaker.api.util.DirectionAxis | Has Getter true | Has Setter false |
名称 axisOffset | Type int | Has Getter true | Has Setter false |
名称 horizontalAngle | Type float | Has Getter true | Has Setter false |
名称 horizontalIndex | Type int | Has Getter true | Has Setter false |
名称 index | Type int | Has Getter true | Has Setter false |
名称 name | Type 文字列型 | Has Getter true | Has Setter false |
名称 opposite | Type crafttweaker.api.util.Direction | Has Getter true | Has Setter false |
名称 xOffset | Type int | Has Getter true | Has Setter false |
名称 yOffset | Type int | Has Getter true | Has Setter false |
名称 zOffset | Type int | Has Getter true | Has Setter false |