Home Commands Examples Getting Started With Scripts Global Keywords

BlockHitResult

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.

script.zs
import crafttweaker.api.util.BlockHitResult;

Extending HitResult

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

Methods

Return Type: BlockPos

script.zs
// BlockHitResult.getBlockPos() as BlockPos
myBlockHitResult.getBlockPos();

Return Type: Direction

script.zs
// BlockHitResult.getDirection() as Direction
myBlockHitResult.getDirection();

Return Type: HitResultType

script.zs
// BlockHitResult.getType() as HitResultType
myBlockHitResult.getType();

Return Type: boolean

script.zs
// BlockHitResult.isInside() as boolean
myBlockHitResult.isInside();

Return Type: BlockHitResult

script.zs
BlockHitResult.withDirection(param0 as Direction) as BlockHitResult
ParameterType
Parameter
param0
Type
Direction

Return Type: BlockHitResult

script.zs
BlockHitResult.withPosition(param0 as BlockPos) as BlockHitResult
ParameterType
Parameter
param0
Type
BlockPos

Properties

NameTypeHas GetterHas Setter
Name
blockPos
Type
BlockPos
Has Getter
true
Has Setter
false
Name
direction
Type
Direction
Has Getter
true
Has Setter
false
Name
isInside
Type
boolean
Has Getter
true
Has Setter
false
Name
type
Type
HitResultType
Has Getter
true
Has Setter
false