BlockPos
Link to blockpos
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.math.BlockPos;
Extending Vec3i
Link to extending-vec3i
BlockPos extends Vec3i. That means all methods available in Vec3i are also available in BlockPos
Static Methods
Link to static-methods
Name: containing
Return Type: BlockPos
ZenScript CopyBlockPos.containing(x as double, y as double, z as double) as BlockPos
Parameter | Type |
---|---|
Parameter x | Type double |
Parameter y | Type double |
Parameter z | Type double |
Constructors
Link to constructors
Creates a new BlockPos using the values of the given vector.
ZenScript Copynew BlockPos(vector as Vec3i) as BlockPos
new BlockPos(new BlockPos(0, 1, 2));
Parameter | Type | Description |
---|---|---|
Parameter vector | Type Vec3i | Description The vector to copy the values of. |
Creates a new BlockPos using the provided values.
ZenScript Copynew BlockPos(x as int, y as int, z as int) as BlockPos
new BlockPos(0, 1, 2);
Parameter | Type | Description |
---|---|---|
Parameter x | Type int | Description The x value of the blockpos |
Parameter y | Type int | Description The y value of the blockpos |
Parameter z | Type int | Description The z value of the blockpos |
Methods
Link to methods
Name: above
Return Type: BlockPos
ZenScript CopyBlockPos.above(distance as int) as BlockPos
Parameter | Type |
---|---|
Parameter distance | Type int |
Name: asImmutable
Return Type: BlockPos
ZenScript Copy// BlockPos.asImmutable() as BlockPos
myBlockPos.asImmutable();
Name: asLong
Return Type: long
ZenScript Copy// BlockPos.asLong() as long
myBlockPos.asLong();
Name: asMutable
Return Type: MutableBlockPos
ZenScript Copy// BlockPos.asMutable() as MutableBlockPos
myBlockPos.asMutable();
Name: atY
Return Type: BlockPos
ZenScript CopyBlockPos.atY(value as int) as BlockPos
Parameter | Type |
---|---|
Parameter value | Type int |
Name: below
Return Type: BlockPos
ZenScript CopyBlockPos.below(distance as int) as BlockPos
Parameter | Type |
---|---|
Parameter distance | Type int |
Name: east
Return Type: BlockPos
ZenScript CopyBlockPos.east(distance as int) as BlockPos
Parameter | Type |
---|---|
Parameter distance | Type int |
Name: multiply
Return Type: BlockPos
ZenScript CopyBlockPos.multiply(scalar as int) as BlockPos
Parameter | Type |
---|---|
Parameter scalar | Type int |
Name: north
Return Type: BlockPos
ZenScript CopyBlockPos.north(distance as int) as BlockPos
Parameter | Type |
---|---|
Parameter distance | Type int |
Name: offset
Return Type: BlockPos
ZenScript CopyBlockPos.offset(x as int, y as int, z as int) as BlockPos
Parameter | Type |
---|---|
Parameter x | Type int |
Parameter y | Type int |
Parameter z | Type int |
Name: south
Return Type: BlockPos
ZenScript CopyBlockPos.south(distance as int) as BlockPos
Parameter | Type |
---|---|
Parameter distance | Type int |
Name: west
Return Type: BlockPos
ZenScript CopyBlockPos.west(distance as int) as BlockPos
Parameter | Type |
---|---|
Parameter distance | Type int |