このページを含むバージョン:
このページを含まないバージョン:
ゲームの種類を返す
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Start() { HostData[] hostData = MasterServer.PollHostList(); foreach (HostData element in hostData) { Debug.Log(element.gameType); } } }