Class ServerboundMovePlayerPosRotPacket
java.lang.Object
org.geysermc.mcprotocollib.protocol.packet.ingame.serverbound.player.ServerboundMovePlayerPosRotPacket
- All Implemented Interfaces:
Packet,MinecraftPacket
-
Constructor Summary
ConstructorsConstructorDescriptionServerboundMovePlayerPosRotPacket(boolean onGround, double x, double y, double z, float yaw, float pitch) ServerboundMovePlayerPosRotPacket(io.netty.buffer.ByteBuf in, MinecraftCodecHelper helper) -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanbooleanfloatgetPitch()doublegetX()doublegetY()floatgetYaw()doublegetZ()inthashCode()booleanvoidserialize(io.netty.buffer.ByteBuf out, MinecraftCodecHelper helper) @NonNull StringtoString()@NonNull ServerboundMovePlayerPosRotPacketwithOnGround(boolean onGround) @NonNull ServerboundMovePlayerPosRotPacketwithPitch(float pitch) @NonNull ServerboundMovePlayerPosRotPacketwithX(double x) @NonNull ServerboundMovePlayerPosRotPacketwithY(double y) @NonNull ServerboundMovePlayerPosRotPacketwithYaw(float yaw) @NonNull ServerboundMovePlayerPosRotPacketwithZ(double z) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.geysermc.mcprotocollib.network.packet.Packet
isPriority
-
Constructor Details
-
ServerboundMovePlayerPosRotPacket
-
ServerboundMovePlayerPosRotPacket
public ServerboundMovePlayerPosRotPacket(boolean onGround, double x, double y, double z, float yaw, float pitch)
-
-
Method Details
-
serialize
- Specified by:
serializein interfaceMinecraftPacket
-
isOnGround
public boolean isOnGround() -
getX
public double getX() -
getY
public double getY() -
getZ
public double getZ() -
getYaw
public float getYaw() -
getPitch
public float getPitch() -
equals
-
canEqual
-
hashCode
public int hashCode() -
toString
-
withOnGround
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withX
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withY
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withZ
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withYaw
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withPitch
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-