Best Photon Synchronize settings for smooth online multiplayer

Working on my online multiplayer settings using photon, im working in unity 2d, i have the online working however my player appears smooth and the other players connected appear jittery and flickering, i realize this is to do with the synchronize settings in the photon view scripts and im trying to get them propperly calibrated so both the player and other players look smooth when moving

here are my current settings, any advice from anyone else using photon would be much appreciated
58104-keks3253.png

I have the Same problem… someone please post a solution!

this is like a super old post but for those of you who find it, the jittering is from having a rigid body. you simply have to do something like this:

if (photonView.isMine == false)
{
Rigidbody2D rb = GetComponent();

		Destroy(rb);
	}