FlyingPacket
class
Declaration
[ProtocolSupport(735, 776)]
[Packet("play.toServer.flying", PacketPhase.Play, PacketDirection.Serverbound)]
[PacketField("OnGround", "bool", Group = "VUntil767", To = 767)]
[PacketField("Flags", "MovementFlags", Group = "V768_Last", From = 768)]
public sealed record FlyingPacket : IPacket<FlyingPacket>, IProtocolType<FlyingPacket>, IPacket
| Namespace | McProtoNet.Protocol.Packets.Play.Serverbound |
| Assembly | McProtoNet.Protocol.dll |
| Source | src/McProtoNet.Protocol/Generated/Packets/Play/Serverbound/FlyingPacket.cs#L5 ↗ |
Implements: IPacket<FlyingPacket>, IProtocolType<FlyingPacket>, IPacket
Constructors
| Signature | Description |
|---|---|
FlyingPacket(FlyingPacket.VUntil767Layer? VUntil767 = null, FlyingPacket.V768_LastLayer? V768_Last = null) | - |
FlyingPacket(VUntil767Layer?, V768_LastLayer?)
public FlyingPacket(FlyingPacket.VUntil767Layer? VUntil767 = null, FlyingPacket.V768_LastLayer? V768_Last = null)
Parameters: VUntil767 (Nullable<VUntil767Layer>), V768_Last (Nullable<V768_LastLayer>)
Properties
| Signature | Description |
|---|---|
static PacketIdentity Identity | Gets the identity of the packet type. |
FlyingPacket.V768_LastLayer? V768_Last | - |
FlyingPacket.VUntil767Layer? VUntil767 | - |
Identity
public static PacketIdentity Identity { get; }
Gets the identity of the packet type.
Returns: PacketIdentity
V768_Last
public FlyingPacket.V768_LastLayer? V768_Last { get; init; }
Returns: Nullable<V768_LastLayer>
VUntil767
public FlyingPacket.VUntil767Layer? VUntil767 { get; init; }
Returns: Nullable<VUntil767Layer>
Methods
| Signature | Description |
|---|---|
static int GetPacketId(int protocolVersion) | - |
static FlyingPacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion) | Reads a value of type FlyingPacket 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 FlyingPacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion)
Reads a value of type FlyingPacket from the specified reader.
Parameters: reader (MinecraftPrimitiveReader), protocolVersion (Int32)
Returns: FlyingPacket - 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">true</a> if the packet exists on the specified protocol version; otherwise, <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/builtin-types/bool">false</a>.
Write(MinecraftPrimitiveWriter, int)
public void Write(MinecraftPrimitiveWriter writer, int protocolVersion)
Writes the current value to the specified writer.
Parameters: writer (MinecraftPrimitiveWriter), protocolVersion (Int32)