MasterServer.port 端口
static var port : int
Description描述
The connection port of the master server.
主服务器的连接端口。
By default this is a server run by Unity Technologies.
在默认情况下,这是一个Unity Technologies公司运行的服务器。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
void ResetIP() {
MasterServer.ipAddress = "127.0.0.1";
MasterServer.port = 10002;
}
}
function ResetIP() {
MasterServer.ipAddress = "127.0.0.1";
MasterServer.port = 10002;
}
最后修改:2011年1月4日 Tuesday 15:35