Network.connections 连接列表

static var connections : NetworkPlayer[]

Description描述

All connected players.

所有连接的玩家。

On a client this contains only the server.

在客户端中,该变量只包含服务器。

using UnityEngine;
using System.Collections;

public class example : 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);
		}

	}
}
function 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);
		}
	}
}
最后修改:2011年4月2日 Saturday 12:25

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。