MasterServer.ipAddress IP地址
static var ipAddress : string
Description描述
The IP address of the master server.
主服务器的IP地址。
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:31