Network Vibration Problem

So I have 2 clients connected to my server. The server is running in the Editor, and the 2 clients are running as built games on the same machine as the Editor. The “Run In Background” setting is enabled. Each client controls a spaceship, which fly around quite nicely, and each client can see both their own spaceship and the other person’s. However, the other person’s spaceship always vibrates, no matter how high I set the sendrate. Neither of the spaceships have a rigidbody or collider component. Anybody got any ideas on what might be causing the vibration, and if so, how to fix it?
Thanks

If I had to guess I would assume that you are too far away from the 0,0,0 point of your scene or that the scale you applied is not suitable for your situation.
On both these cases, you run into ‘simple’ float precision problems which for euler angles, that use trigonometric functions for their handling, results in instable numbers which cause exactly this kind of issue (or depth flickering if you have nearly parallel, nearly equal planes or surfaces intersecting for example)

As you mention that it happens only for the other one, I’m though in the situation where I am not sure how thats happening as its normally ‘all or none’ unless your ships differ enough in scale for it to affect one but not the other. A bit more information on how your networking works, if you use what Unity Networking Example / M2H Networking offer or not for example, so the situation can be checked more indepth