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
-
Method Summary
Modifier and TypeMethodDescription@NotNull Entity
Gets the enity who will be affected bygetVelocity()
.@NotNull Vec
Gets the velocity which will be applied.boolean
Gets if theEvent
should be cancelled or not.void
setCancelled
(boolean cancel) Marks theEvent
as cancelled or not.void
setVelocity
(@NotNull Vec velocity) Changes the applied velocity.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.minestom.server.event.trait.EntityInstanceEvent
getInstance
-
Constructor Details
-
EntityVelocityEvent
-
-
Method Details
-
getEntity
Gets the enity who will be affected bygetVelocity()
.- Specified by:
getEntity
in interfaceEntityEvent
- Returns:
- the entity
-
getVelocity
Gets the velocity which will be applied.- Returns:
- the velocity
-
setVelocity
Changes the applied velocity.- Parameters:
velocity
- the new velocity
-
isCancelled
public boolean isCancelled()Description copied from interface:CancellableEvent
Gets if theEvent
should be cancelled or not.- Specified by:
isCancelled
in interfaceCancellableEvent
- Returns:
- true if the event should be cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:CancellableEvent
Marks theEvent
as cancelled or not.- Specified by:
setCancelled
in interfaceCancellableEvent
- Parameters:
cancel
- true if the event should be cancelled, false otherwise
-