LoadBalancingClient and RPC calls

Options
So in order to keep track of the online status of friends I create a LoadBalancingClient `client` and use it to connect to a region master server, there I can call OpFindFriends(). I create a room by calling client.OpCreateRoom(), but when I try to make RPC call through: PhotonView.RPC(...), I get error because CurrentRoom is null. How do I execute a RPC through my LoadBalancingClient?

Comments

  • Patrik
    Patrik
    edited August 2020
    Options
    Would it be accurate to do:
    PhotonNetwork.NetworkingClient = myLoadBalancingClient;
    
    ?

    If I do this I can create the rooms and join them, and the RPC calls doesn't fail, but the clients doesn't receive them, it's only called locally.