fix : 패킷 Vector3 -> Position 변경 (유니티 호환성)

This commit is contained in:
qornwh1
2026-03-08 23:46:34 +09:00
parent 3188dbeb3d
commit 5df664e05b
5 changed files with 11 additions and 11 deletions

View File

@@ -152,7 +152,7 @@ public class StressTestClient
{
PlayerId = clientId,
RotY = rotY,
Position = new Packet.Vector3 { X = position.X, Y = 0, Z = position.Z }
Position = new Packet.Position { X = position.X, Y = 0, Z = position.Z }
};
byte[] data = PacketSerializer.Serialize((ushort)PacketCode.TRANSFORM_PLAYER, pkt);
writer.Put(data);