How get single current name?
I did list… but think it wrong for current single.
void Start () {
networkManager.matchMaker.ListMatches(0, 20, “”, true, 0, 0, OnMatchList);
}
public void OnMatchList (bool success, string extendedInfo, List matchList)
{
foreach (MatchInfoSnapshot match in matchList)
{
txt.text = “” + match.name;
}
}
