Hello, I’ve just started to learn Multiplayer Networking in Unity and I’m trying to turn a complicated pong game I was already developing to online (P2P if possible). I want to know if my ball object needs to be a spawnable by the server. At the moment it is, and It has a Network Transform component with syc rigidbody2d with the maximum value of network send rate. However, the ball is only in the correct position in the host player, the other player sees the ball with lag. How can i correct this? If you need any more information tell me.
There will always be latency. Generally, you want to lerp differences between server positions and client.