Package org.bukkit.event.entity
Class ProjectileHitEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
org.bukkit.event.entity.ProjectileHitEvent
- All Implemented Interfaces:
Cancellable
- Direct Known Subclasses:
ExpBottleEvent
,LingeringPotionSplashEvent
,PotionSplashEvent
,TargetHitEvent
Called when a projectile hits an object
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
Field Summary
Fields inherited from class org.bukkit.event.entity.EntityEvent
entity
-
Constructor Summary
ConstructorDescriptionProjectileHitEvent
(@NotNull Projectile projectile) Deprecated.ProjectileHitEvent
(@NotNull Projectile projectile, @Nullable Block hitBlock) Deprecated.ProjectileHitEvent
(@NotNull Projectile projectile, @Nullable Entity hitEntity) Deprecated.ProjectileHitEvent
(@NotNull Projectile projectile, @Nullable Entity hitEntity, @Nullable Block hitBlock) Deprecated.ProjectileHitEvent
(@NotNull Projectile projectile, @Nullable Entity hitEntity, @Nullable Block hitBlock, @Nullable BlockFace hitFace) -
Method Summary
Modifier and TypeMethodDescriptionReturns the Entity involved in this eventstatic @NotNull HandlerList
Gets the block that was hit, if it was a block that was hit.Gets the block face that was hit, if it was a block that was hit and the face was provided in the event.Gets the entity that was hit, if it was an entity that was hit.boolean
Gets the cancellation state of this event.void
setCancelled
(boolean cancel) Whether to cancel the action that occurs when the projectile hits.Methods inherited from class org.bukkit.event.entity.EntityEvent
getEntityType
Methods inherited from class org.bukkit.event.Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
ProjectileHitEvent
Deprecated. -
ProjectileHitEvent
@Deprecated public ProjectileHitEvent(@NotNull @NotNull Projectile projectile, @Nullable @Nullable Entity hitEntity) Deprecated. -
ProjectileHitEvent
@Deprecated public ProjectileHitEvent(@NotNull @NotNull Projectile projectile, @Nullable @Nullable Block hitBlock) Deprecated. -
ProjectileHitEvent
@Deprecated public ProjectileHitEvent(@NotNull @NotNull Projectile projectile, @Nullable @Nullable Entity hitEntity, @Nullable @Nullable Block hitBlock) Deprecated. -
ProjectileHitEvent
-
-
Method Details
-
getEntity
Description copied from class:EntityEvent
Returns the Entity involved in this event- Overrides:
getEntity
in classEntityEvent
- Returns:
- Entity who is involved in this event
-
getHitBlock
Gets the block that was hit, if it was a block that was hit.- Returns:
- hit block or else null
-
getHitBlockFace
Gets the block face that was hit, if it was a block that was hit and the face was provided in the event.- Returns:
- hit face or else null
-
getHitEntity
Gets the entity that was hit, if it was an entity that was hit.- Returns:
- hit entity or else null
-
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
- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancel) Whether to cancel the action that occurs when the projectile hits. In the case of an entity, it will not collide (unless it's a firework, then useFireworkExplodeEvent
).
In the case of a block, some blocks (eg target block, bell) will not perform the action associated.
This does NOT prevent block collisions, and explosions will still occur unless their respective events are cancelled.- Specified by:
setCancelled
in interfaceCancellable
- Parameters:
cancel
- true if you wish to cancel this event
-
getHandlers
- Specified by:
getHandlers
in classEvent
-
getHandlerList
-