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 Copyimport 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
使用方式
Link to 使用方式
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
ZenScript CopyRightClickBlockEvent.setUseBlock(triggerBlock as EventResult)
参数 | 类型 |
---|---|
参数 triggerBlock | 类型 EventResult |
Name: setUseItem
ZenScript CopyRightClickBlockEvent.setUseItem(triggerItem as EventResult)
参数 | 类型 |
---|---|
参数 triggerItem | 类型 EventResult |
名称 | 类型 | 可获得 | 可设置 | 描述 |
---|---|---|---|---|
名称 face | 类型 Direction | 可获得 true | 可设置 false | 描述 The face of the block that was clicked Unlike in PlayerInteractEvent this is known not to be null |
名称 hitVec | 类型 BlockHitResult | 可获得 true | 可设置 false | 描述 |
名称 useBlock | 类型 EventResult | 可获得 true | 可设置 true | 描述 |
名称 useItem | 类型 EventResult | 可获得 true | 可设置 true | 描述 |