Direction
Link to direction
Импорт класса
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.util.Direction;
Implemented Interfaces
Link to implemented-interfaces
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 Copy<constant:minecraft:direction:down>
<constant:minecraft:direction:up>
<constant:minecraft:direction:north>
<constant:minecraft:direction:south>
<constant:minecraft:direction:west>
<constant:minecraft:direction:east>
Методы
Link to методы
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
Параметр | Тип |
---|---|
Параметр degrees | Тип float |
Name: toYRot
Return Type: float
ZenScript Copy// Direction.toYRot() as float
myDirection.toYRot();
Свойства
Link to свойства
Название | Тип | Имеет Getter | Имеет Setter |
---|---|---|---|
Название axis | Тип Axis | Имеет Getter true | Имеет Setter false |
Название axisDirection | Тип AxisDirection | Имеет Getter true | Имеет Setter false |
Название clockWise | Тип Direction | Имеет Getter true | Имеет Setter false |
Название counterClockWise | Тип Direction | Имеет Getter true | Имеет Setter false |
Название normal | Тип Vec3i | Имеет Getter true | Имеет Setter false |
Название opposite | Тип Direction | Имеет Getter true | Имеет Setter false |
Название rotation | Тип Quaternion | Имеет Getter true | Имеет Setter false |
Название step | Тип Vector3f | Имеет Getter true | Имеет Setter false |
Название stepX | Тип int | Имеет Getter true | Имеет Setter false |
Название stepY | Тип int | Имеет Getter true | Имеет Setter false |
Название stepZ | Тип int | Имеет Getter true | Имеет Setter false |
Название toYRot | Тип float | Имеет Getter true | Имеет Setter false |