Skip to main content

WorldBorderCenterPacket

class

Declaration

[ProtocolSupport(755, 776)]
[Packet("play.toClient.world_border_center", PacketPhase.Play, PacketDirection.Clientbound)]
[PacketField("X", "double")]
[PacketField("Z", "double")]
public sealed record WorldBorderCenterPacket : IPacket<WorldBorderCenterPacket>, IProtocolType<WorldBorderCenterPacket>, IPacket
NamespaceMcProtoNet.Protocol.Packets.Play.Clientbound
AssemblyMcProtoNet.Protocol.dll
Sourcesrc/McProtoNet.Protocol/Generated/Packets/Play/Clientbound/WorldBorderCenterPacket.cs#L5 ↗

Implements: IPacket<WorldBorderCenterPacket>, IProtocolType<WorldBorderCenterPacket>, IPacket

Constructors

SignatureDescription
WorldBorderCenterPacket(double X, double Z)-

WorldBorderCenterPacket(double, double)

public WorldBorderCenterPacket(double X, double Z)

Parameters: X (Double), Z (Double)

Properties

SignatureDescription
static PacketIdentity IdentityGets the identity of the packet type.
double X-
double Z-

Identity

public static PacketIdentity Identity { get; }

Gets the identity of the packet type.

Returns: PacketIdentity

X

public double X { get; init; }

Returns: Double

Z

public double Z { get; init; }

Returns: Double

Methods

SignatureDescription
static int GetPacketId(int protocolVersion)-
static WorldBorderCenterPacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion)Reads a value of type WorldBorderCenterPacket from the specified reader.
static bool TryGetPacketId(int protocolVersion, out int id)Attempts to get the wire id of the packet for the specified protocol version.
void Write(MinecraftPrimitiveWriter writer, int protocolVersion)Writes the current value to the specified writer.

GetPacketId(int)

public static int GetPacketId(int protocolVersion)

Parameters: protocolVersion (Int32)

Returns: Int32

Read(ref MinecraftPrimitiveReader, int)

public static WorldBorderCenterPacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion)

Reads a value of type WorldBorderCenterPacket from the specified reader.

Parameters: reader (MinecraftPrimitiveReader), protocolVersion (Int32)

Returns: WorldBorderCenterPacket - The value that was read.

TryGetPacketId(int, out int)

public static bool TryGetPacketId(int protocolVersion, out int id)

Attempts to get the wire id of the packet for the specified protocol version.

Parameters: protocolVersion (Int32), id (Int32)

Returns: Boolean - <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool"&gt;true&lt;/a> if the packet exists on the specified protocol version; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool"&gt;false&lt;/a>.

Write(MinecraftPrimitiveWriter, int)

public void Write(MinecraftPrimitiveWriter writer, int protocolVersion)

Writes the current value to the specified writer.

Parameters: writer (MinecraftPrimitiveWriter), protocolVersion (Int32)