Direction
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.
import crafttweaker.api.util.Direction;
Implemented Interfaces
Direction implements the following interfaces. That means all methods defined in these interfaces are also available in Direction
Enum Constants
Direction is an enum. It has 6 enum constants. They are accessible using the code below.
<constant:minecraft:direction:down><constant:minecraft:direction:up><constant:minecraft:direction:north><constant:minecraft:direction:south><constant:minecraft:direction:west><constant:minecraft:direction:east>
Methods
Return Type: Axis
// Direction.getAxis() as Axis
myDirection.getAxis();
Return Type: AxisDirection
// Direction.getAxisDirection() as AxisDirection
myDirection.getAxisDirection();
Return Type: Direction
// Direction.getClockWise() as Direction
myDirection.getClockWise();
Return Type: Direction
// Direction.getCounterClockWise() as Direction
myDirection.getCounterClockWise();
Return Type: string
// Direction.getName() as string
myDirection.getName();
Return Type: Vec3i
// Direction.getNormal() as Vec3i
myDirection.getNormal();
Return Type: Direction
// Direction.getOpposite() as Direction
myDirection.getOpposite();
Return Type: Quaternion
// Direction.getRotation() as Quaternion
myDirection.getRotation();
Return Type: int
// Direction.getStepX() as int
myDirection.getStepX();
Return Type: int
// Direction.getStepY() as int
myDirection.getStepY();
Return Type: int
// Direction.getStepZ() as int
myDirection.getStepZ();
Return Type: boolean
Direction.isFacingAngle(degrees as float) as boolean
Parameter | Type |
---|---|
Parameter degrees | Type float |
Return Type: Vector3f
// Direction.step() as Vector3f
myDirection.step();
Return Type: float
// Direction.toYRot() as float
myDirection.toYRot();
Properties
Name | Type | Has Getter | Has Setter |
---|---|---|---|
Name axis | Type Axis | Has Getter true | Has Setter false |
Name axisDirection | Type AxisDirection | Has Getter true | Has Setter false |
Name clockWise | Type Direction | Has Getter true | Has Setter false |
Name counterClockWise | Type Direction | Has Getter true | Has Setter false |
Name normal | Type Vec3i | Has Getter true | Has Setter false |
Name opposite | Type Direction | Has Getter true | Has Setter false |
Name rotation | Type Quaternion | Has Getter true | Has Setter false |
Name step | Type Vector3f | Has Getter true | Has Setter false |
Name stepX | Type int | Has Getter true | Has Setter false |
Name stepY | Type int | Has Getter true | Has Setter false |
Name stepZ | Type int | Has Getter true | Has Setter false |
Name toYRot | Type float | Has Getter true | Has Setter false |