Импорт класса

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
Copy
import crafttweaker.api.util.direction.Axis;

Implemented Interfaces

Link to implemented-interfaces

Axis implements the following interfaces. That means all methods defined in these interfaces are also available in Axis

Axis is an enum. It has 3 enum constants. They are accessible using the code below.

ZenScript
Copy
Axis.X
Axis.Y
Axis.Z

Name: choose

Return Type: double

ZenScript
Copy
Axis.choose(x as double, y as double, z as double) as double
ПараметрТипОписание
Параметр
x
Тип
double
Описание
No Description Provided
Параметр
y
Тип
double
Описание
No Description Provided
Параметр
z
Тип
double
Описание
No Description Provided

Name: choose

Return Type: int

ZenScript
Copy
Axis.choose(x as int, y as int, z as int) as int
ПараметрТипОписание
Параметр
x
Тип
int
Описание
No Description Provided
Параметр
y
Тип
int
Описание
No Description Provided
Параметр
z
Тип
int
Описание
No Description Provided

Name: getName

Return Type: string

ZenScript
Copy
// Axis.getName() as string

myAxis.getName();

Name: getPlane

Return Type: Plane

ZenScript
Copy
// Axis.getPlane() as Plane

myAxis.getPlane();

Name: isHorizontal

Return Type: boolean

ZenScript
Copy
// Axis.isHorizontal() as boolean

myAxis.isHorizontal();

Name: isVertical

Return Type: boolean

ZenScript
Copy
// Axis.isVertical() as boolean

myAxis.isVertical();

Name: test

Return Type: boolean

ZenScript
Copy
Axis.test(direction as Direction) as boolean
ПараметрТипОписание
Параметр
direction
Тип
Direction
Описание
No Description Provided

Свойства

Link to свойства

НазваниеТипИмеет GetterИмеет SetterОписание
Название
horizontal
Тип
boolean
Имеет Getter
true
Имеет Setter
false
Описание
No Description Provided
Название
name
Тип
string
Имеет Getter
true
Имеет Setter
false
Описание
No Description Provided
Название
plane
Тип
Plane
Имеет Getter
true
Имеет Setter
false
Описание
No Description Provided
Название
vertical
Тип
boolean
Имеет Getter
true
Имеет Setter
false
Описание
No Description Provided