Version: 2017.1
public string gameName ;

説明

ゲーム名を返す

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { HostData[] hostData = MasterServer.PollHostList(); Debug.Log("Games found: "); foreach (HostData element in hostData) { Debug.Log(element.gameName); } } }