Package net.minestom.server.event.entity
Class EntityShootEvent
java.lang.Object
net.minestom.server.event.entity.EntityShootEvent
- All Implemented Interfaces:
Event,CancellableEvent,EntityEvent,EntityInstanceEvent,InstanceEvent
Called with
EntityProjectile.shoot(Point, double, double)-
Constructor Summary
ConstructorsConstructorDescriptionEntityShootEvent(@NotNull Entity entity, @NotNull Entity projectile, @NotNull Point to, double power, double spread) -
Method Summary
Modifier and TypeMethodDescription@NotNull EntityGets the entity of this event.doublegetPower()Gets shot power.Gets the projectile.doubleGets shot spread.getTo()Gets the position projectile was shot to.booleanGets if theEventshould be cancelled or not.voidsetCancelled(boolean cancel) Marks theEventas cancelled or not.voidsetPower(double power) Sets shot power.voidsetSpread(double spread) Sets shot spread.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
-
EntityShootEvent
-
-
Method Details
-
getProjectile
Gets the projectile.- Returns:
- the projectile.
-
getTo
Gets the position projectile was shot to.- Returns:
- the position projectile was shot to.
-
getSpread
public double getSpread()Gets shot spread.- Returns:
- shot spread.
-
setSpread
public void setSpread(double spread) Sets shot spread.- Parameters:
spread- shot spread.
-
getPower
public double getPower()Gets shot power.- Returns:
- shot power.
-
setPower
public void setPower(double power) Sets shot power.- Parameters:
power- shot power.
-
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
-
getEntity
Description copied from interface:EntityEventGets the entity of this event.- Specified by:
getEntityin interfaceEntityEvent- Returns:
- the entity
-