AbstractHurtingProjectile

Link to abstracthurtingprojectile

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

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.entity.type.projectile.AbstractHurtingProjectile;

Extending Projectile

Link to extending-projectile

AbstractHurtingProjectile extends Projectile. That means all methods available in Projectile are also available in AbstractHurtingProjectile

Name: getXPower

Gets the x power of this projectile.

Returns: The x power of this projectile.
Return Type: double

ZenScript
Copy
// AbstractHurtingProjectile.getXPower() as double

myAbstractHurtingProjectile.getXPower();

Name: getYPower

Gets the y power of this projectile.

Returns: The y power of this projectile.
Return Type: double

ZenScript
Copy
// AbstractHurtingProjectile.getYPower() as double

myAbstractHurtingProjectile.getYPower();

Name: getZPower

Gets the z power of this projectile.

Returns: The z power of this projectile.
Return Type: double

ZenScript
Copy
// AbstractHurtingProjectile.getZPower() as double

myAbstractHurtingProjectile.getZPower();

Name: setXPower

Sets the x power of this projectile.

ZenScript
Copy
// AbstractHurtingProjectile.setXPower(xPower as double)

myAbstractHurtingProjectile.setXPower(4);
ПараметрТипОписание
Параметр
xPower
Тип
double
Описание
The x power of this projectile.

Name: setYPower

Sets the y power of this projectile.

ZenScript
Copy
// AbstractHurtingProjectile.setYPower(yPower as double)

myAbstractHurtingProjectile.setYPower(4);
ПараметрТипОписание
Параметр
yPower
Тип
double
Описание
The y power of this projectile.

Name: setZPower

Sets the z power of this projectile.

ZenScript
Copy
// AbstractHurtingProjectile.setZPower(zPower as double)

myAbstractHurtingProjectile.setZPower(4);
ПараметрТипОписание
Параметр
zPower
Тип
double
Описание
The z power of this projectile.

Свойства

Link to свойства

НазваниеТипИмеет GetterИмеет SetterОписание
Название
xPower
Тип
double
Имеет Getter
true
Имеет Setter
true
Описание
Gets the x power of this projectile.
Название
yPower
Тип
double
Имеет Getter
true
Имеет Setter
true
Описание
Gets the y power of this projectile.
Название
zPower
Тип
double
Имеет Getter
true
Имеет Setter
true
Описание
Gets the z power of this projectile.