Version: 2017.2
public static NetworkPlayer[] connections ;

説明

接続されたすべてのプレイヤーの配列

クライアント上ではサーバーのみが含まれています。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnGUI() { if (GUILayout.Button("Disconnect first player")) if (Network.connections.Length > 0) { Debug.Log("Disconnecting: " + Network.connections[0].ipAddress + ":" + Network.connections[0].port); Network.CloseConnection(Network.connections[0], true); } } }