Sending custom data to other clients.

Options
I have 4 players in my turn based game. After implementing game start event, now I need to send some data from 'master' client to everyone. I also created a GameObject for that data, did some experiments with Photon.RPC, but got stuck because of this problem.

According to this I am able to serialize any kind of class, but have to implement my custom SerializeMethod and DeserializeMethod.

But this is not what I want, because I have to manipulate byte arrays for every data I add to my class, which is error prone. Is there a better way to achieve the same result?

Comments

  • JohnTube
    JohnTube ✭✭✭✭✭
    Options
    Hi @tatev,

    Thank you for choosing Photon!

    You need to use the types are supported by Photon or define a new custom type made of those and register it.
    No other option.