Direction
Link to direction
Importare la Classe
Link to importare-la-classe
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.util.Direction;
Interfacce Implementate
Link to interfacce-implementate
Direction implements the following interfaces. That means all methods defined in these interfaces are also available in Direction
Enum Constants
Link to enum-constants
Direction is an enum. It has 6 enum constants. They are accessible using the code below.
ZenScript CopyDirection.DOWN
Direction.UP
Direction.NORTH
Direction.SOUTH
Direction.WEST
Direction.EAST
Metodi
Link to metodi
Name: getAxisDirection
Return Type: AxisDirection
ZenScript Copy// Direction.getAxisDirection() as AxisDirection
myDirection.getAxisDirection();
Name: getClockWise
Return Type: Direction
ZenScript Copy// Direction.getClockWise() as Direction
myDirection.getClockWise();
Name: getCounterClockWise
Return Type: Direction
ZenScript Copy// Direction.getCounterClockWise() as Direction
myDirection.getCounterClockWise();
Name: getName
Return Type: string
ZenScript Copy// Direction.getName() as string
myDirection.getName();
Name: getNormal
Return Type: Vec3i
ZenScript Copy// Direction.getNormal() as Vec3i
myDirection.getNormal();
Name: getOpposite
Return Type: Direction
ZenScript Copy// Direction.getOpposite() as Direction
myDirection.getOpposite();
Name: getRotation
Return Type: Quaternion
ZenScript Copy// Direction.getRotation() as Quaternion
myDirection.getRotation();
Name: getStepX
Return Type: int
ZenScript Copy// Direction.getStepX() as int
myDirection.getStepX();
Name: getStepY
Return Type: int
ZenScript Copy// Direction.getStepY() as int
myDirection.getStepY();
Name: getStepZ
Return Type: int
ZenScript Copy// Direction.getStepZ() as int
myDirection.getStepZ();
Name: isFacingAngle
Return Type: boolean
ZenScript CopyDirection.isFacingAngle(degrees as float) as boolean
Parametro | Tipo | Descrizione |
---|---|---|
Parametro degrees | Tipo float | Descrizione No Description Provided |
Name: toYRot
Return Type: float
ZenScript Copy// Direction.toYRot() as float
myDirection.toYRot();
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome axis | Tipo Axis | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome axisDirection | Tipo AxisDirection | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome clockWise | Tipo Direction | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome counterClockWise | Tipo Direction | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome normal | Tipo Vec3i | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome opposite | Tipo Direction | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome rotation | Tipo Quaternion | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome step | Tipo Vector3f | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome stepX | Tipo int | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome stepY | Tipo int | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome stepZ | Tipo int | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome toYRot | Tipo float | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |