Position
Link to position
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 Copyimport crafttweaker.api.util.Position;
Methods
Link to methods
Name: x
Return Type: double
ZenScript Copy// Position.x() as double
myPosition.x();
Name: y
Return Type: double
ZenScript Copy// Position.y() as double
myPosition.y();
Name: z
Return Type: double
ZenScript Copy// Position.z() as double
myPosition.z();
Properties
Link to properties
Name | Type | Has Getter | Has Setter |
---|---|---|---|
Name x | Type double | Has Getter true | Has Setter false |
Name y | Type double | Has Getter true | Has Setter false |
Name z | Type double | Has Getter true | Has Setter false |