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
ConstructorDescriptionEntityShootEvent
(@NotNull Entity entity, @NotNull Entity projectile, @NotNull Point to, double power, double spread) -
Method Summary
Modifier and TypeMethodDescription@NotNull Entity
Gets the entity of this event.double
getPower()
Gets shot power.Gets the projectile.double
Gets shot spread.getTo()
Gets the position projectile was shot to.boolean
Gets if theEvent
should be cancelled or not.void
setCancelled
(boolean cancel) Marks theEvent
as cancelled or not.void
setPower
(double power) Sets shot power.void
setSpread
(double spread) Sets shot spread.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
-
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: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
-
getEntity
Description copied from interface:EntityEvent
Gets the entity of this event.- Specified by:
getEntity
in interfaceEntityEvent
- Returns:
- the entity
-