Package net.minestom.server.event.entity
Class EntityVelocityEvent
java.lang.Object
net.minestom.server.event.entity.EntityVelocityEvent
- All Implemented Interfaces:
Event,CancellableEvent,EntityEvent,EntityInstanceEvent,InstanceEvent
Called when a velocity is applied to an entity using
Entity.setVelocity(Vec).-
Constructor Summary
ConstructorsConstructorDescriptionEntityVelocityEvent(@NotNull Entity entity, @NotNull net.minestom.server.coordinate.Vec velocity) -
Method Summary
Modifier and TypeMethodDescription@NotNull EntityGets the enity who will be affected bygetVelocity().@NotNull net.minestom.server.coordinate.VecGets the velocity which will be applied.booleanGets if theEventshould be cancelled or not.voidsetCancelled(boolean cancel) Marks theEventas cancelled or not.voidsetVelocity(@NotNull net.minestom.server.coordinate.Vec velocity) Changes the applied velocity.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.minestom.server.event.trait.EntityInstanceEvent
getInstance
-
Constructor Details
-
EntityVelocityEvent
public EntityVelocityEvent(@NotNull @NotNull Entity entity, @NotNull @NotNull net.minestom.server.coordinate.Vec velocity)
-
-
Method Details
-
getEntity
Gets the enity who will be affected bygetVelocity().- Specified by:
getEntityin interfaceEntityEvent- Returns:
- the entity
-
getVelocity
@NotNull public @NotNull net.minestom.server.coordinate.Vec getVelocity()Gets the velocity which will be applied.- Returns:
- the velocity
-
setVelocity
public void setVelocity(@NotNull @NotNull net.minestom.server.coordinate.Vec velocity) Changes the applied velocity.- Parameters:
velocity- the new velocity
-
isCancelled
public boolean isCancelled()Description copied from interface:CancellableEventGets if theEventshould be cancelled or not.- Specified by:
isCancelledin interfaceCancellableEvent- Returns:
- true if the event should be cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:CancellableEventMarks theEventas cancelled or not.- Specified by:
setCancelledin interfaceCancellableEvent- Parameters:
cancel- true if the event should be cancelled, false otherwise
-