feat : 더미 이동 높이 조절

This commit is contained in:
qornwh1
2026-03-26 17:03:38 +09:00
parent cfc242f248
commit ca5a345c8f
2 changed files with 2 additions and 2 deletions

View File

@@ -144,7 +144,7 @@ public class DummyClients
Position = new Packet.Position
{
X = position.X,
Y = -0.5f, // 높이는 버린다.
Y = -11.09f, // 높이는 버린다.
Z = position.Z
}
};

View File

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