A MineCraft Axis Aligned Boundary Box object allows you change a Block's Boundary borders to a given cuboid shape.

Импорт пакета

Link to импорт-пакета

It might be required for you to import the package if you encounter any issues, so better be safe than sorry and add the import.
import mods.contenttweaker.AxisAlignedBB;

Calling an MCAxisAlignedBB object

Link to calling-an-mcaxisalignedbb-object

You can get such an object using a Block's axisAlignedBB Property.
Alternatively, you can use this package to create a new MCAxisAlignedBB object:

ZenScript
Copy
AxisAlignedBB.create(double minX, double minY, double minZ, double maxX, double maxY, double maxZ);

All parameters for this function are doubles between 0 and 1!

You can get and set each Property using getProperty() or object.property.

ZenPropertyТип
ZenProperty
minX
Тип
double
ZenProperty
minY
Тип
double
ZenProperty
minZ
Тип
double
ZenProperty
maxX
Тип
double
ZenProperty
maxY
Тип
double
ZenProperty
maxZ
Тип
double