OnRoomListUpdate()will never call

Options

i have startet trying Photon pun2 for my networking solution. Im trying to List Rooms but OnRoomListUpdate will not call but all other callbacks like OncreatedRoom() Works fine

Comments

  • Tobias
    Options

    You need at least one client to create a visible, open room. To get a room list, you have to join a lobby (clients don't get the list by default). Then you also need to implement IMatchmakingCallbacks in some class and register it for callbacks.

    This doc about matchmaking is related.