LeftClickEmptyEvent
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
Description
This event is fired when a player left clicks while targeting a block. This event controls which of 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.
canceled none of the above noted methods to be called.
Extends
LeftClickEmptyEvent extends PlayerInteractEvent
.
Listening to the event
This event can be listened to like so:
Members
Getter
If the interaction was on an entity, will be a BlockPos centered on the entity. If the interaction was on a block, will be the position of that block. Otherwise, will be a BlockPos centered on the player.
Return Type:
BlockPos
cancel()
Cancels the event. Same as
setCanceled(true)
Getter
Return Type:
bool
cancelable() as bool
Return Type:
bool
Getter
Return Type:
bool
Setter
Parameters:
cancel: bool
Type: bool
canceled() as bool
Return Type:
bool
canceled(cancel as bool)
Parameters:
cancel: bool
Type: bool
Getter
Return Type:
InteractionResult
Setter
Set the EnumActionResult that will be returned to vanilla if the event is cancelled, instead of calling the relevant method of the event.
Note that this only has an effect on RightClickBlockEvent, RightClickItemEvent, EntityInteractEvent.
Note that this only has an effect on RightClickBlockEvent, RightClickItemEvent, EntityInteractEvent.
Parameters:
result: InteractionResult
Type: InteractionResult
Getter
The face involved in this interaction. For all non-block interactions, this will return null
Return Type:
Direction
Getter
Return Type:
InteractionHand
Getter
Return Type:
bool
hasResult() as bool
Return Type:
bool
Getter
The stack involved in this interaction. May be empty, but will never be null.
Return Type:
IItemStack
Getter
Return Type:
EventResult
Setter
Parameters:
result: EventResult
Type: EventResult
result() as Result
Return Type:
EventResult
result(result as Result)
Parameters:
result: EventResult
Type: EventResult
setAllow()
sets the event's result to
allow
setDefault()
sets the event's result to
default
setDeny()
sets the event's result to
deny