Перейти к основному содержимому

PlayerRotationPacket

class

Declaration

[ProtocolSupport(768, 776)]
[Packet("play.toClient.player_rotation", PacketPhase.Play, PacketDirection.Clientbound)]
[PacketField("Yaw", "float")]
[PacketField("Pitch", "float")]
[PacketField("RelativeYaw", "bool", Group = "V773_Last", From = 773)]
[PacketField("RelativePitch", "bool", Group = "V773_Last", From = 773)]
public sealed record PlayerRotationPacket : IPacket<PlayerRotationPacket>, IProtocolType<PlayerRotationPacket>, IPacket
NamespaceMcProtoNet.Protocol.Packets.Play.Clientbound
AssemblyMcProtoNet.Protocol.dll
Sourcesrc/McProtoNet.Protocol/Generated/Packets/Play/Clientbound/PlayerRotationPacket.cs#L5 ↗

Implements: IPacket<PlayerRotationPacket>, IProtocolType<PlayerRotationPacket>, IPacket

Constructors

SignatureDescription
PlayerRotationPacket(float Yaw, float Pitch, PlayerRotationPacket.V773_LastLayer? V773_Last = null)-

PlayerRotationPacket(float, float, V773_LastLayer?)

public PlayerRotationPacket(float Yaw, float Pitch, PlayerRotationPacket.V773_LastLayer? V773_Last = null)

Parameters: Yaw (Single), Pitch (Single), V773_Last (Nullable<V773_LastLayer>)

Properties

SignatureDescription
static PacketIdentity IdentityGets the identity of the packet type.
float Pitch-
PlayerRotationPacket.V773_LastLayer? V773_Last-
float Yaw-

Identity

public static PacketIdentity Identity { get; }

Gets the identity of the packet type.

Returns: PacketIdentity

Pitch

public float Pitch { get; init; }

Returns: Single

V773_Last

public PlayerRotationPacket.V773_LastLayer? V773_Last { get; init; }

Returns: Nullable<V773_LastLayer>

Yaw

public float Yaw { get; init; }

Returns: Single

Methods

SignatureDescription
static int GetPacketId(int protocolVersion)-
static PlayerRotationPacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion)Reads a value of type PlayerRotationPacket 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 PlayerRotationPacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion)

Reads a value of type PlayerRotationPacket from the specified reader.

Parameters: reader (MinecraftPrimitiveReader), protocolVersion (Int32)

Returns: PlayerRotationPacket - 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)