EntityDimensions

Link to entitydimensions

Importing the class

Link to importing-the-class

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.EntityDimensions;

Extending Record

Link to extending-record

EntityDimensions extends Record. That means all methods available in Record are also available in EntityDimensions

Name: makeBoundingBox

Return Type: AABB

ZenScript
Copy
EntityDimensions.makeBoundingBox(vec as Vec3) as AABB
ParameterType
Parameter
vec
Type
Vec3

Name: makeBoundingBox

Return Type: AABB

ZenScript
Copy
EntityDimensions.makeBoundingBox(x as double, y as double, z as double) as AABB
ParameterType
Parameter
x
Type
double
Parameter
y
Type
double
Parameter
z
Type
double

Name: scale

Return Type: EntityDimensions

ZenScript
Copy
EntityDimensions.scale(factor as float) as EntityDimensions
ParameterType
Parameter
factor
Type
float

Name: scale

Return Type: EntityDimensions

ZenScript
Copy
EntityDimensions.scale(widthFactor as float, heightFactor as float) as EntityDimensions
ParameterType
Parameter
widthFactor
Type
float
Parameter
heightFactor
Type
float