Class ClientboundPlayerPositionPacket
java.lang.Object
net.minecraft.network.protocol.game.ClientboundPlayerPositionPacket
- All Implemented Interfaces:
Packet<ClientGamePacketListener>
public class ClientboundPlayerPositionPacket
extends Object
implements Packet<ClientGamePacketListener>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final int
private final Set
<RelativeMovement> static final StreamCodec
<FriendlyByteBuf, ClientboundPlayerPositionPacket> private final double
private final float
private final double
private final float
private final double
-
Constructor Summary
ConstructorsModifierConstructorDescriptionClientboundPlayerPositionPacket
(double x, double y, double z, float yRot, float xRot, Set<RelativeMovement> relativeArguments, int id) private
-
Method Summary
Modifier and TypeMethodDescriptionint
getId()
double
getX()
float
getXRot()
double
getY()
float
getYRot()
double
getZ()
void
handle
(ClientGamePacketListener handler) Passes this Packet on to the NetHandler for processing.type()
private void
write
(FriendlyByteBuf buffer) Writes the raw packet data to the data stream.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.minecraft.network.protocol.Packet
isSkippable, isTerminal
-
Field Details
-
STREAM_CODEC
-
x
private final double x -
y
private final double y -
z
private final double z -
yRot
private final float yRot -
xRot
private final float xRot -
relativeArguments
-
id
private final int id
-
-
Constructor Details
-
ClientboundPlayerPositionPacket
public ClientboundPlayerPositionPacket(double x, double y, double z, float yRot, float xRot, Set<RelativeMovement> relativeArguments, int id) -
ClientboundPlayerPositionPacket
-
-
Method Details
-
write
Writes the raw packet data to the data stream. -
type
- Specified by:
type
in interfacePacket<ClientGamePacketListener>
-
handle
Passes this Packet on to the NetHandler for processing.- Specified by:
handle
in interfacePacket<ClientGamePacketListener>
-
getX
public double getX() -
getY
public double getY() -
getZ
public double getZ() -
getYRot
public float getYRot() -
getXRot
public float getXRot() -
getId
public int getId() -
getRelativeArguments
-