Package net.minestom.server.event.player
Class PlayerMoveEvent
java.lang.Object
net.minestom.server.event.player.PlayerMoveEvent
- All Implemented Interfaces:
Event
,CancellableEvent
,EntityEvent
,EntityInstanceEvent
,InstanceEvent
,PlayerEvent
,PlayerInstanceEvent
Called when a player is modifying his position.
-
Constructor Summary
ConstructorDescriptionPlayerMoveEvent
(@NotNull Player player, @NotNull Pos newPosition, boolean onGround) -
Method Summary
Modifier and TypeMethodDescription@NotNull Pos
Gets the target position.@NotNull Player
Gets the player.boolean
Gets if theEvent
should be cancelled or not.boolean
Gets if the player is now on the ground.void
setCancelled
(boolean cancel) Marks theEvent
as cancelled or not.void
setNewPosition
(@NotNull Pos newPosition) Changes the target position.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
-
PlayerMoveEvent
-
-
Method Details
-
getNewPosition
Gets the target position.- Returns:
- the new position
-
setNewPosition
Changes the target position.- Parameters:
newPosition
- the new target position
-
isOnGround
public boolean isOnGround()Gets if the player is now on the ground. This is the original value that the client sent, and is not modified by setting the new position.- Returns:
- onGround
-
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
-
getPlayer
Description copied from interface:PlayerEvent
Gets the player.- Specified by:
getPlayer
in interfacePlayerEvent
- Returns:
- the player
-