MCEntityInteract

Link to mcentityinteract

This class was added by a mod with mod-id crafttweaker. So you need to have this mod installed if you want to use this feature.

Importing the class

Link to importing-the-class

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.

ZenScript
Copy
crafttweaker.api.event.entity.player.PlayerInteractEvent.MCEntityInteract
ZenScript
Copy
new crafttweaker.api.event.entity.player.PlayerInteractEvent.MCEntityInteract(handler as function.Consumer<crafttweaker.api.event.entity.player.PlayerInteractEvent.MCEntityInteract>);
ParameterTypeDescription
Parameter
handler
Type
function.Consumer<crafttweaker.api.event.entity.player.PlayerInteractEvent.MCEntityInteract>
Description
No description provided

Returns crafttweaker.api.entity.player.MCPlayerEntity

ZenScript
Copy
myMCEntityInteract.getEntityPlayer();

Returns: The face involved in this interaction. For all non-block interactions, this will return null.

Returns crafttweaker.api.util.Direction

ZenScript
Copy
myMCEntityInteract.getFace();

Returns: The itemstack involved in this interaction, { @code ItemStack.EMPTY} if the hand was empty.

Returns crafttweaker.api.item.IItemStack

ZenScript
Copy
myMCEntityInteract.getItemStack();

Returns: Player

Returns crafttweaker.api.entity.player.MCPlayerEntity

ZenScript
Copy
myMCEntityInteract.getPlayer();

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. Will never be null. Returns: The position involved in this interaction.

Returns crafttweaker.api.util.BlockPos

ZenScript
Copy
myMCEntityInteract.getPos();

Determines if this event expects a significant result value. Note: Events with the HasResult annotation will have this method automatically added to return true.

Returns boolean

ZenScript
Copy
myMCEntityInteract.hasResult();

Determine if this function is cancelable at all. Returns: If access to setCanceled should be allowed Note: Events with the Cancelable annotation will have this method automatically added to return true.

Returns boolean

ZenScript
Copy
myMCEntityInteract.isCancelable();

Determine if this event is canceled and should stop executing. Returns: The current canceled state

Returns boolean

ZenScript
Copy
myMCEntityInteract.isCanceled();
ZenScript
Copy
myMCEntityInteract.setCanceled(cancel as boolean);
ParameterTypeDescription
Parameter
cancel
Type
boolean
Description
No description provided