Version: 2017.1

HostData.connectedPlayers

切换到手册
public int connectedPlayers ;

描述

当前连接的玩家。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { HostData[] hostData = MasterServer.PollHostList(); foreach (HostData element in hostData) { Debug.Log(element.connectedPlayers + " are connected to " + element.gameName); } } }