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.util.BlockHitResult;

Extending HitResult

Link to extending-hitresult

BlockHitResult extends HitResult. That means all methods available in HitResult are also available in BlockHitResult

Name: getBlockPos

Return Type: BlockPos

ZenScript
Copy
// BlockHitResult.getBlockPos() as BlockPos

myBlockHitResult.getBlockPos();

Name: getDirection

Return Type: Direction

ZenScript
Copy
// BlockHitResult.getDirection() as Direction

myBlockHitResult.getDirection();

Name: getType

Return Type: HitResultType

ZenScript
Copy
// BlockHitResult.getType() as HitResultType

myBlockHitResult.getType();

Name: isInside

Return Type: boolean

ZenScript
Copy
// BlockHitResult.isInside() as boolean

myBlockHitResult.isInside();

Name: withDirection

Return Type: BlockHitResult

ZenScript
Copy
BlockHitResult.withDirection(param0 as Direction) as BlockHitResult
参数类型描述
参数
param0
类型
Direction
描述
No Description Provided

Name: withPosition

Return Type: BlockHitResult

ZenScript
Copy
BlockHitResult.withPosition(param0 as BlockPos) as BlockHitResult
参数类型描述
参数
param0
类型
BlockPos
描述
No Description Provided
名称类型可获得可设置描述
名称
blockPos
类型
BlockPos
可获得
true
可设置
false
描述
No Description Provided
名称
direction
类型
Direction
可获得
true
可设置
false
描述
No Description Provided
名称
isInside
类型
布尔值
可获得
true
可设置
false
描述
No Description Provided
名称
类型
类型
HitResultType
可获得
true
可设置
false
描述
No Description Provided