Class ServerboundMoveVehiclePacket
java.lang.Object
org.geysermc.mcprotocollib.protocol.packet.ingame.serverbound.level.ServerboundMoveVehiclePacket
- All Implemented Interfaces:
Packet,MinecraftPacket
-
Constructor Summary
ConstructorsConstructorDescriptionServerboundMoveVehiclePacket(double x, double y, double z, float yaw, float pitch) ServerboundMoveVehiclePacket(io.netty.buffer.ByteBuf in, MinecraftCodecHelper helper) -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanbooleanfloatgetPitch()doublegetX()doublegetY()floatgetYaw()doublegetZ()inthashCode()voidserialize(io.netty.buffer.ByteBuf out, MinecraftCodecHelper helper) @NonNull StringtoString()@NonNull ServerboundMoveVehiclePacketwithPitch(float pitch) @NonNull ServerboundMoveVehiclePacketwithX(double x) @NonNull ServerboundMoveVehiclePacketwithY(double y) @NonNull ServerboundMoveVehiclePacketwithYaw(float yaw) @NonNull ServerboundMoveVehiclePacketwithZ(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, isTerminal
-
Constructor Details
-
ServerboundMoveVehiclePacket
-
ServerboundMoveVehiclePacket
public ServerboundMoveVehiclePacket(double x, double y, double z, float yaw, float pitch)
-
-
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() -
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).
-