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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the target position.Gets the player.booleanGets if theEventshould be cancelled or not.booleanGets if the player is now on the ground.voidsetCancelled(boolean cancel) Marks theEventas cancelled or not.voidsetNewPosition(Pos newPosition) Changes the target position.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface EntityInstanceEvent
getInstanceMethods inherited from interface PlayerEvent
getEntity
-
Constructor Details
-
PlayerMoveEvent
-
-
Method Details
-
getNewPosition
-
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: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
-
getPlayer
Description copied from interface:PlayerEventGets the player.- Specified by:
getPlayerin interfacePlayerEvent- Returns:
- the player
-