I am using photon 2 to create a multiplayer game. And I already created the matching and room functionalities. I wanted to know if there is any way players can get their custom prefab instantiated (with custom toys and stuff they achieved from player store menu.) to the room.
If I can store the custom properties to a playerpref, can I access them during a photon session?
You can do whatever you want during a photon session. The trick will be that you need to communicate all of this custom stuff to all the other players in the room too so they can draw it properly. Consider looking into a photon RPC for this.
Thank you.