Character camera and movement fix - maybe 2

This commit is contained in:
2025-10-12 13:42:19 +02:00
parent 78836c0691
commit 43865e57f1
3 changed files with 4 additions and 9 deletions

View File

@@ -248,7 +248,7 @@ namespace MegaKoop.Game.Networking
return;
}
var message = new PlayerInputMessage(identity.NetworkId, moveInput, jump, Vector2.zero);
var message = new PlayerInputMessage(identity.NetworkId, moveInput, jump);
byte[] payload = PlayerInputMessage.Serialize(message);
if (!networkManager.IsConnected || networkManager.IsHost)
{