RightClickBlockEvent

Link to rightclickblockevent

This event is fired on both sides whenever the player right clicks while targeting a block. This event controls which of Item.onItemUseFirst, Block.onBlockActivated, and Item.onItemUse will be called.

The event is cancelable.

If the event is canceled, will cause none of the above three to be called.

The event does not have a result.

Импорт класса

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
Copy
import crafttweaker.api.event.entity.player.interact.RightClickBlockEvent;

Extending PlayerInteractEvent

Link to extending-playerinteractevent

RightClickBlockEvent extends PlayerInteractEvent. That means all methods available in PlayerInteractEvent are also available in RightClickBlockEvent

Name: getFace

The face of the block that was clicked Unlike in PlayerInteractEvent this is known not to be null

Return Type: Direction

ZenScript
Copy
// RightClickBlockEvent.getFace() as Direction

myRightClickBlockEvent.getFace();

Name: getHitVec

Return Type: BlockHitResult

ZenScript
Copy
// RightClickBlockEvent.getHitVec() as BlockHitResult

myRightClickBlockEvent.getHitVec();

Name: getUseBlock

Return Type: EventResult

ZenScript
Copy
// RightClickBlockEvent.getUseBlock() as EventResult

myRightClickBlockEvent.getUseBlock();

Name: getUseItem

Return Type: EventResult

ZenScript
Copy
// RightClickBlockEvent.getUseItem() as EventResult

myRightClickBlockEvent.getUseItem();

Name: setUseBlock

Return Type: void

ZenScript
Copy
RightClickBlockEvent.setUseBlock(triggerBlock as EventResult) as void
ПараметрТипОписание
Параметр
triggerBlock
Тип
EventResult
Описание
No Description Provided

Name: setUseItem

Return Type: void

ZenScript
Copy
RightClickBlockEvent.setUseItem(triggerItem as EventResult) as void
ПараметрТипОписание
Параметр
triggerItem
Тип
EventResult
Описание
No Description Provided

Свойства

Link to свойства

НазваниеТипИмеет GetterИмеет SetterОписание
Название
face
Тип
Direction
Имеет Getter
true
Имеет Setter
false
Описание
The face of the block that was clicked
Unlike in PlayerInteractEvent this is known not to be null
Название
hitVec
Тип
BlockHitResult
Имеет Getter
true
Имеет Setter
false
Описание
No Description Provided
Название
useBlock
Тип
EventResult
Имеет Getter
true
Имеет Setter
true
Описание
No Description Provided
Название
useItem
Тип
EventResult
Имеет Getter
true
Имеет Setter
true
Описание
No Description Provided