BlockHitResult
Link to blockhitresult
Импорт класса
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.BlockHitResult;
Extending HitResult
Link to extending-hitresult
BlockHitResult extends HitResult. That means all methods available in HitResult are also available in BlockHitResult
Методы
Link to методы
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 CopyBlockHitResult.withDirection(param0 as Direction) as BlockHitResult
Параметр | Тип |
---|---|
Параметр param0 | Тип Direction |
Name: withPosition
Return Type: BlockHitResult
ZenScript CopyBlockHitResult.withPosition(param0 as BlockPos) as BlockHitResult
Параметр | Тип |
---|---|
Параметр param0 | Тип BlockPos |
Свойства
Link to свойства
Название | Тип | Имеет Getter | Имеет Setter |
---|---|---|---|
Название blockPos | Тип BlockPos | Имеет Getter true | Имеет Setter false |
Название direction | Тип Direction | Имеет Getter true | Имеет Setter false |
Название isInside | Тип boolean | Имеет Getter true | Имеет Setter false |
Название type | Тип HitResultType | Имеет Getter true | Имеет Setter false |