SpawnEntityPaintingPacket
class
Declaration
[ProtocolSupport(735, 758)]
[Packet("play.toClient.spawn_entity_painting", PacketPhase.Play, PacketDirection.Clientbound)]
[PacketField("EntityId", "int")]
[PacketField("EntityUuid", "Guid")]
[PacketField("Title", "int")]
[PacketField("Location", "Position")]
[PacketField("Direction", "int")]
public sealed record SpawnEntityPaintingPacket : IPacket<SpawnEntityPaintingPacket>, IProtocolType<SpawnEntityPaintingPacket>, IPacket
| Namespace | McProtoNet.Protocol.Packets.Play.Clientbound |
| Assembly | McProtoNet.Protocol.dll |
| Source | src/McProtoNet.Protocol/Generated/Packets/Play/Clientbound/SpawnEntityPaintingPacket.cs#L6 ↗ |
Implements: IPacket<SpawnEntityPaintingPacket>, IProtocolType<SpawnEntityPaintingPacket>, IPacket
Constructors
| Signature | Description |
|---|---|
SpawnEntityPaintingPacket(int EntityId, Guid EntityUuid, int Title, Position Location, int Direction) | - |
SpawnEntityPaintingPacket(int, Guid, int, Position, int)
public SpawnEntityPaintingPacket(int EntityId, Guid EntityUuid, int Title, Position Location, int Direction)
Parameters: EntityId (Int32), EntityUuid (Guid), Title (Int32), Location (Position), Direction (Int32)
Properties
| Signature | Description |
|---|---|
int Direction | - |
int EntityId | - |
Guid EntityUuid | - |
static PacketIdentity Identity | Gets the identity of the packet type. |
Position Location | - |
int Title | - |
Direction
public int Direction { get; init; }
Returns: Int32
EntityId
public int EntityId { get; init; }
Returns: Int32
EntityUuid
public Guid EntityUuid { get; init; }
Returns: Guid
Identity
public static PacketIdentity Identity { get; }
Gets the identity of the packet type.
Returns: PacketIdentity
Location
public Position Location { get; init; }
Returns: Position
Title
public int Title { get; init; }
Returns: Int32
Methods
| Signature | Description |
|---|---|
static int GetPacketId(int protocolVersion) | - |
static SpawnEntityPaintingPacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion) | Reads a value of type SpawnEntityPaintingPacket 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 SpawnEntityPaintingPacket Read(ref MinecraftPrimitiveReader reader, int protocolVersion)
Reads a value of type SpawnEntityPaintingPacket from the specified reader.
Parameters: reader (MinecraftPrimitiveReader), protocolVersion (Int32)
Returns: SpawnEntityPaintingPacket - 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)