PlayerInteractEvent
Link to playerinteractevent
This event is the superclass of all other PlayerInteract events. Generally, you want to use the subtypes of this event.
The event is not cancelable.
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.PlayerInteractEvent;
Extending PlayerEvent
Link to extending-playerevent
PlayerInteractEvent extends PlayerEvent. That means all methods available in PlayerEvent are also available in PlayerInteractEvent
Metodi
Link to metodi
Name: getBlockPos
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
ZenScript Copy// PlayerInteractEvent.getBlockPos() as BlockPos
myPlayerInteractEvent.getBlockPos();
Name: getCancellationResult
Returns: The EnumActionResult that will be returned to vanilla if the event is cancelled, instead of calling the relevant method of the event. By default, this is PASS, meaning cancelled events will cause the client to keep trying more interactions until something works.
Return Type: InteractionResult
ZenScript Copy// PlayerInteractEvent.getCancellationResult() as InteractionResult
myPlayerInteractEvent.getCancellationResult();
Name: getFace
The face involved in this interaction. For all non-block interactions, this will return null
Return Type: Direction
ZenScript Copy// PlayerInteractEvent.getFace() as Direction
myPlayerInteractEvent.getFace();
Name: getHand
Return Type: InteractionHand
ZenScript Copy// PlayerInteractEvent.getHand() as InteractionHand
myPlayerInteractEvent.getHand();
Name: getItemStack
The stack involved in this interaction. May be empty, but will never be null.
Return Type: IItemStack
ZenScript Copy// PlayerInteractEvent.getItemStack() as IItemStack
myPlayerInteractEvent.getItemStack();
Name: setCancellationResult
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.
Return Type: void
ZenScript CopyPlayerInteractEvent.setCancellationResult(result as InteractionResult) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro result | Tipo InteractionResult | Descrizione No Description Provided |
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome blockPos | Tipo BlockPos | Ha Getter sì | Ha Setter no | Descrizione 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. |
Nome cancellationResult | Tipo InteractionResult | Ha Getter sì | Ha Setter sì | Descrizione |
Nome face | Tipo Direction | Ha Getter sì | Ha Setter no | Descrizione The face involved in this interaction. For all non-block interactions, this will return null |
Nome hand | Tipo InteractionHand | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome itemStack | Tipo IItemStack | Ha Getter sì | Ha Setter no | Descrizione The stack involved in this interaction. May be empty, but will never be null. |