MutableBlockPos
Link to mutableblockpos
导入类
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 Copyimport crafttweaker.api.util.math.MutableBlockPos;
Extending BlockPos
Link to extending-blockpos
MutableBlockPos extends BlockPos. That means all methods available in BlockPos are also available in MutableBlockPos
使用方式
Link to 使用方式
Name: clamp
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.clamp(axis as Axis, min as int, max as int) as MutableBlockPos
参数 | 类型 |
---|---|
参数 axis | 类型 Axis |
参数 min | 类型 int |
参数 max | 类型 int |
Name: move
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.move(direction as Direction) as MutableBlockPos
参数 | 类型 |
---|---|
参数 direction | 类型 Direction |
Name: move
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.move(other as Vec3i) as MutableBlockPos
参数 | 类型 |
---|---|
参数 other | 类型 Vec3i |
Name: move
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.move(direction as Direction, distance as int) as MutableBlockPos
参数 | 类型 |
---|---|
参数 direction | 类型 Direction |
参数 distance | 类型 int |
Name: move
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.move(x as int, y as int, z as int) as MutableBlockPos
参数 | 类型 |
---|---|
参数 x | 类型 int |
参数 y | 类型 int |
参数 z | 类型 int |
Name: mutable
Return Type: MutableBlockPos
ZenScript Copy// MutableBlockPos.mutable() as MutableBlockPos
myMutableBlockPos.mutable();
Name: setValue
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.setValue(value as long) as MutableBlockPos
参数 | 类型 |
---|---|
参数 value | 类型 long |
Name: setValue
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.setValue(value as Vec3i) as MutableBlockPos
参数 | 类型 |
---|---|
参数 value | 类型 Vec3i |
Name: setValue
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.setValue(x as double, y as double, z as double) as MutableBlockPos
参数 | 类型 |
---|---|
参数 x | 类型 double |
参数 y | 类型 double |
参数 z | 类型 double |
Name: setValue
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.setValue(x as int, y as int, z as int) as MutableBlockPos
参数 | 类型 |
---|---|
参数 x | 类型 int |
参数 y | 类型 int |
参数 z | 类型 int |
Name: setValue
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.setValue(axisCycle as AxisCycle, x as int, y as int, z as int) as MutableBlockPos
参数 | 类型 |
---|---|
参数 axisCycle | 类型 AxisCycle |
参数 x | 类型 int |
参数 y | 类型 int |
参数 z | 类型 int |
Name: setWithOffset
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.setWithOffset(other as Vec3i, direction as Direction) as MutableBlockPos
参数 | 类型 |
---|---|
参数 other | 类型 Vec3i |
参数 direction | 类型 Direction |
Name: setWithOffset
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.setWithOffset(other as Vec3i, offset as Vec3i) as MutableBlockPos
参数 | 类型 |
---|---|
参数 other | 类型 Vec3i |
参数 offset | 类型 Vec3i |
Name: setWithOffset
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.setWithOffset(other as Vec3i, x as int, y as int, z as int) as MutableBlockPos
参数 | 类型 |
---|---|
参数 other | 类型 Vec3i |
参数 x | 类型 int |
参数 y | 类型 int |
参数 z | 类型 int |
Name: setX
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.setX(x as int) as MutableBlockPos
参数 | 类型 |
---|---|
参数 x | 类型 int |
Name: setY
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.setY(y as int) as MutableBlockPos
参数 | 类型 |
---|---|
参数 y | 类型 int |
Name: setZ
Return Type: MutableBlockPos
ZenScript CopyMutableBlockPos.setZ(z as int) as MutableBlockPos
参数 | 类型 |
---|---|
参数 z | 类型 int |