Photon - PhotonView "OnPhotonSerializeView" not called after ownership transfer

So, I got stuck with a problem and have been reading up on it ever since, but I’m unable to grasp the idea. I have a photonView observing itself, so ‘OnPhotonSerializeView’ is firing, as expected. However, when I change the ownership, ‘OnPhotonSerializeView’ stops firing, although it should not, so if it was writing to stream previously, it should now read the stream. Any idea what could I be doing wrong.

If someone else is now the owner, that client needs to send updates, before OnPhotonSerializeView gets called again.
Maybe the object doesn’t move and you set the observe option to “Unreliable On Change” or “Delta Compressed”?

1 Like

Oh, just noticed, it is set to “unreliable on change”. Now I understand what the option meant. Thanks tobiass, I will confirm the solution soon.