Package io.papermc.paper.event.entity
Class EntityPushedByEntityAttackEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
io.papermc.paper.event.entity.EntityKnockbackEvent
io.papermc.paper.event.entity.EntityPushedByEntityAttackEvent
- All Implemented Interfaces:
Cancellable
- Direct Known Subclasses:
EntityKnockbackByEntityEvent
Fired when an entity is pushed by another entity's attack. The acceleration vector can be
modified. If this event is cancelled, the entity will not get pushed.
Note: Some entities might trigger this multiple times on the same entity as multiple acceleration calculations are done.
-
Nested Class Summary
Nested classes/interfaces inherited from class io.papermc.paper.event.entity.EntityKnockbackEvent
EntityKnockbackEvent.Cause
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
Field Summary
Fields inherited from class io.papermc.paper.event.entity.EntityKnockbackEvent
knockback
Fields inherited from class org.bukkit.event.entity.EntityEvent
entity
-
Constructor Summary
ConstructorDescriptionEntityPushedByEntityAttackEvent
(@NonNull Entity entity, @NonNull EntityKnockbackEvent.Cause cause, @NonNull Entity pushedBy, @NonNull Vector knockback) -
Method Summary
Modifier and TypeMethodDescription@NonNull Vector
Deprecated, for removal: This API element is subject to removal in a future version.@NonNull Entity
Gets the entity which pushed the affected entity.boolean
Gets the cancellation state of this event.void
setAcceleration
(@NonNull Vector acceleration) Deprecated, for removal: This API element is subject to removal in a future version.void
setCancelled
(boolean cancel) Sets the cancellation state of this event.Methods inherited from class io.papermc.paper.event.entity.EntityKnockbackEvent
getCause, getHandlerList, getHandlers, getKnockback, setKnockback
Methods inherited from class org.bukkit.event.entity.EntityEvent
getEntity, getEntityType
Methods inherited from class org.bukkit.event.Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
EntityPushedByEntityAttackEvent
@Internal public EntityPushedByEntityAttackEvent(@NonNull Entity entity, @NonNull EntityKnockbackEvent.Cause cause, @NonNull Entity pushedBy, @NonNull Vector knockback)
-
-
Method Details
-
getPushedBy
Gets the entity which pushed the affected entity.- Returns:
- the pushing entity
-
getAcceleration
Deprecated, for removal: This API element is subject to removal in a future version.Gets the acceleration that will be applied to the affected entity.- Returns:
- the acceleration vector
-
setAcceleration
@Deprecated(since="1.20.6", forRemoval=true) public void setAcceleration(@NonNull Vector acceleration) Deprecated, for removal: This API element is subject to removal in a future version.Sets the relative acceleration that will be applied to the affected entity.- Parameters:
acceleration
- the new acceleration vector
-
isCancelled
public boolean isCancelled()Description copied from interface:Cancellable
Gets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins- Specified by:
isCancelled
in interfaceCancellable
- Overrides:
isCancelled
in classEntityKnockbackEvent
- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:Cancellable
Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.- Specified by:
setCancelled
in interfaceCancellable
- Overrides:
setCancelled
in classEntityKnockbackEvent
- Parameters:
cancel
- true if you wish to cancel this event
-
EntityKnockbackEvent.getKnockback()