Class ClientboundPlayerPositionPacket
java.lang.Object
org.geysermc.mcprotocollib.protocol.packet.ingame.clientbound.entity.player.ClientboundPlayerPositionPacket
- All Implemented Interfaces:
Packet,MinecraftPacket
-
Constructor Summary
ConstructorsConstructorDescriptionClientboundPlayerPositionPacket(double x, double y, double z, float yaw, float pitch, int teleportId, @NonNull List<PositionElement> relative) ClientboundPlayerPositionPacket(double x, double y, double z, float yaw, float pitch, int teleportId, PositionElement... relative) ClientboundPlayerPositionPacket(io.netty.buffer.ByteBuf in, MinecraftCodecHelper helper) -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanbooleanfloatgetPitch()@NonNull List<PositionElement>intdoublegetX()doublegetY()floatgetYaw()doublegetZ()inthashCode()voidserialize(io.netty.buffer.ByteBuf out, MinecraftCodecHelper helper) @NonNull StringtoString()@NonNull ClientboundPlayerPositionPacketwithPitch(float pitch) @NonNull ClientboundPlayerPositionPacketwithRelative(@NonNull List<PositionElement> relative) @NonNull ClientboundPlayerPositionPacketwithTeleportId(int teleportId) @NonNull ClientboundPlayerPositionPacketwithX(double x) @NonNull ClientboundPlayerPositionPacketwithY(double y) @NonNull ClientboundPlayerPositionPacketwithYaw(float yaw) @NonNull ClientboundPlayerPositionPacketwithZ(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
-
ClientboundPlayerPositionPacket
public ClientboundPlayerPositionPacket(double x, double y, double z, float yaw, float pitch, int teleportId, PositionElement... relative) -
ClientboundPlayerPositionPacket
-
ClientboundPlayerPositionPacket
public ClientboundPlayerPositionPacket(double x, double y, double z, float yaw, float pitch, int teleportId, @NonNull @NonNull List<PositionElement> relative)
-
-
Method Details
-
serialize
- Specified by:
serializein interfaceMinecraftPacket
-
getX
public double getX() -
getY
public double getY() -
getZ
public double getZ() -
getYaw
public float getYaw() -
getPitch
public float getPitch() -
getTeleportId
public int getTeleportId() -
getRelative
-
equals
-
canEqual
-
hashCode
public int hashCode() -
toString
-
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).
-
withTeleportId
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withRelative
public @NonNull ClientboundPlayerPositionPacket withRelative(@NonNull @NonNull List<PositionElement> relative) - Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-