How to lock rooms so no one else can enter??

Options
Im creating a racing game and players will have to wait until other players are in the room to start playing. When the room is full or when all of the players are ready a new scene will load. If a player leaves or the room isnt full when the new scene loads the i want to unable new players from joining the room.

Comments

  • Josh
    Options
    *the*
  • JohnTube
    JohnTube ✭✭✭✭✭
    edited April 2017
    Options
    Hi @Josh,

    Thank you for choosing Photon!

    Please set the room to closed (room.IsOpen = false) so no one can join it or invisible (room.IsVisible = false) so no one can find it in random matchmaking but can only join it by name.
  • Josh
    Options
    Thank you