MultiplayerQuizGame Question

Options
hi everyone
i have designed a multiplayer Quiz game and i have successfully added photon unity networking to it. now i have 5 people in a room and they can send message to each other. my problem is that right now each of player has a separate quiz in front of them and what i want is that they have 1 quiz in front of all of them which they can select check-boxes together and all of them see live when one player select a check-box and they all be able to edit that, what should i do? should i serialize these toggles with a script?
thanks

Comments

  • vadim
    Options
    Hi,
    You have several options but the simplest would be use of room custom properties. Set them as player changes checkbox state. The properties will be updated on other clients automatically with triggering OnPhotonCustomRoomPropertiesChanged message.