Version: 2017.1

Network.InitializeServer

Cambiar al Manual
Obsolete public static NetworkConnectionError InitializeServer (int connections, int listenPort);
public static NetworkConnectionError InitializeServer (int connections, int listenPort, bool useNat);

Descripción

Inicializar el servidor.

connections is the number of allowed incoming connections (note that this is generally not the same as the number of players). listenPort is the port number we want to listen to. useNat sets the NAT punchthrough functionality. If you want this server to be able to accept connections using NAT punchthrough, using the facilitator, set this to true.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void LaunchServer() { Network.incomingPassword = "HolyMoly"; bool useNat = !Network.HavePublicAddress(); Network.InitializeServer(32, 25000, useNat); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961