Package net.minestom.server.event.player
Class PlayerItemAnimationEvent
java.lang.Object
net.minestom.server.event.player.PlayerItemAnimationEvent
- All Implemented Interfaces:
Event
,CancellableEvent
,EntityEvent
,EntityInstanceEvent
,InstanceEvent
,PlayerEvent
,PlayerInstanceEvent
public class PlayerItemAnimationEvent
extends Object
implements PlayerInstanceEvent, CancellableEvent
Used when a
Player
finish the animation of an item.- See Also:
-
Nested Class Summary
-
Constructor Summary
ConstructorDescriptionPlayerItemAnimationEvent
(@NotNull Player player, @NotNull PlayerItemAnimationEvent.ItemAnimationType itemAnimationType, Player.Hand hand) -
Method Summary
Modifier and TypeMethodDescriptiongetHand()
Gets the hand that was used.Gets the animation.@NotNull Player
Gets the player.boolean
Gets if theEvent
should be cancelled or not.void
setCancelled
(boolean cancel) Marks theEvent
as cancelled or not.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
Methods inherited from interface net.minestom.server.event.trait.PlayerEvent
getEntity
-
Constructor Details
-
PlayerItemAnimationEvent
public PlayerItemAnimationEvent(@NotNull @NotNull Player player, @NotNull @NotNull PlayerItemAnimationEvent.ItemAnimationType itemAnimationType, @NotNull Player.Hand hand)
-
-
Method Details
-
getItemAnimationType
Gets the animation.- Returns:
- the animation
-
getHand
Gets the hand that was used.- Returns:
- the hand
-
getPlayer
Description copied from interface:PlayerEvent
Gets the player.- Specified by:
getPlayer
in interfacePlayerEvent
- Returns:
- the player
-
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
-