LeftClickBlockEvent
Link to leftclickblockevent
This event is fired when a player left clicks while targeting a block. This event controls which of Block#attack(BlockState, Level, BlockPos, Player) and/or the item harvesting methods will be called.
Note that if the event is canceled and the player holds down left mouse, the event will continue to fire. This is due to how vanilla calls the left click handler methods.
Also note that creative mode directly breaks the block without running any other logic.
The event is cancelable.
If the event is canceled, none of the above noted methods to be called.
The event does not have a result.
Importare la Classe
Link to importare-la-classe
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.LeftClickBlockEvent;
Extending PlayerInteractEvent
Link to extending-playerinteractevent
LeftClickBlockEvent extends PlayerInteractEvent. That means all methods available in PlayerInteractEvent are also available in LeftClickBlockEvent
Metodi
Link to metodi
Name: getUseBlock
Return Type: EventResult
ZenScript Copy// LeftClickBlockEvent.getUseBlock() as EventResult
myLeftClickBlockEvent.getUseBlock();
Name: getUseItem
Return Type: EventResult
ZenScript Copy// LeftClickBlockEvent.getUseItem() as EventResult
myLeftClickBlockEvent.getUseItem();
Name: setUseBlock
Return Type: void
ZenScript CopyLeftClickBlockEvent.setUseBlock(triggerBlock as EventResult) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro triggerBlock | Tipo EventResult | Descrizione No Description Provided |
Name: setUseItem
Return Type: void
ZenScript CopyLeftClickBlockEvent.setUseItem(triggerItem as EventResult) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro triggerItem | Tipo EventResult | Descrizione No Description Provided |
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome useBlock | Tipo EventResult | Ha Getter sì | Ha Setter sì | Descrizione No Description Provided |
Nome useItem | Tipo EventResult | Ha Getter sì | Ha Setter sì | Descrizione No Description Provided |