calling RPC from a photonview you don't "own"

Options
Ok, I have a situation in my code where I am calling PhotonView.RPC on a PhotonView that belongs to a different PhotonPlayer to me (In this case, I am the master client, and the photonview in question belongs to a client different to the master client)

Now, this does not give me any error messages or warnings, which suggests i'm using it in a valid way, but it doesn't appear to do anything. Is that intended behaviour?

Comments

  • dreamora
    Options
    RPCs are independent of owners and should just work. Sure that the target object has the required RPC present

    Ownership is only related to OnSerializeView, only the owner will ever get the write state, all others only get read.