This is my code to list matches in lobby manager
public void listMatchh()
{
AutoMachLobby.singleton.matchMaker.ListMatches(0, 6, “auto”, OnGUIMatchList);
}
This code list both started games and not started games ,I mean it lists games that are both in lobby scene and play scene.
I want to list only not started games(games in lobby scene)
1 Like
Need to do exactly the same and don’t know how. Can anyone offer a tip on this please?
public class GameLobbyManager : NetworkLobbyManager
{
public override void OnLobbyServerPlayersReady()
{
matchMaker.SetMatchAttributes(matchInfo.networkId, false, 0, OnSetMatchAttribute);
ServerChangeScene(playScene);
}
}