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.
Importing the class
Link to importing-the-class
Importing the class is recommended for events, simply add this line to the top of your script file.
ZenScript Copyimport crafttweaker.neoforge.api.event.interact.RightClickBlockEvent;
Listening to the event
Link to listening-to-the-event
ZenScript Copyevents.register<crafttweaker.neoforge.api.event.interact.RightClickBlockEvent>(event => {
println("RightClickBlockEvent ran!");
});
Supertype
Link to supertype
RightClickBlockEvent extends PlayerInteractEvent. That means all methods available in PlayerInteractEvent are also available in RightClickBlockEvent
Implemented Interfaces
Link to implemented-interfaces
RightClickBlockEvent implements the following interfaces. That means all methods defined in these interfaces are also available in RightClickBlockEvent
Properties
Link to properties
Name | Type | Has Getter | Has Setter |
---|---|---|---|
Name canceled | Type RightClickBlockEvent | Has Getter false | Has Setter true |
Name cancellationResult | Type RightClickBlockEvent | Has Getter true | Has Setter true |
Name hitVec | Type BlockHitResult | Has Getter true | Has Setter false |
Name useBlock | Type RightClickBlockEvent | Has Getter true | Has Setter true |
Name useItem | Type RightClickBlockEvent | Has Getter true | Has Setter true |