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.
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.
import crafttweaker.api.event.entity.player.interact.RightClickBlockEvent;
Extending PlayerInteractEvent
RightClickBlockEvent extends PlayerInteractEvent. That means all methods available in PlayerInteractEvent are also available in RightClickBlockEvent
Methods
The face of the block that was clicked Unlike in PlayerInteractEvent this is known not to be null
Return Type: Direction
// RightClickBlockEvent.getFace() as Direction
myRightClickBlockEvent.getFace();
Return Type: BlockHitResult
// RightClickBlockEvent.getHitVec() as BlockHitResult
myRightClickBlockEvent.getHitVec();
Return Type: EventResult
// RightClickBlockEvent.getUseBlock() as EventResult
myRightClickBlockEvent.getUseBlock();
Return Type: EventResult
// RightClickBlockEvent.getUseItem() as EventResult
myRightClickBlockEvent.getUseItem();
Return Type: void
RightClickBlockEvent.setUseBlock(triggerBlock as EventResult) as void
Parameter | Type | Description |
---|---|---|
Parameter triggerBlock | Type EventResult | Description No Description Provided |
Return Type: void
RightClickBlockEvent.setUseItem(triggerItem as EventResult) as void
Parameter | Type | Description |
---|---|---|
Parameter triggerItem | Type EventResult | Description No Description Provided |
Properties
Name | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
Name face | Type Direction | Has Getter true | Has Setter false | Description The face of the block that was clicked Unlike in PlayerInteractEvent this is known not to be null |
Name hitVec | Type BlockHitResult | Has Getter true | Has Setter false | Description No Description Provided |
Name useBlock | Type EventResult | Has Getter true | Has Setter true | Description No Description Provided |
Name useItem | Type EventResult | Has Getter true | Has Setter true | Description No Description Provided |