Version: 5.6
public static bool Configure (Networking.ConnectionConfig config, int maxConnections);
public static bool Configure (Networking.HostTopology topology);

パラメーター

config トランスポート層の設定オブジェクト
maxConnections 許可するクライアントの最大接続数
topology 使用するトランスポート層のトポロジーオブジェクト

戻り値

bool 正常に設定されている場合、True を返します。

説明

サーバー用にトランスポート層を設定します。

using UnityEngine;
using UnityEngine.Networking;

public class Example : MonoBehaviour { void StartServer() { ConnectionConfig config = new ConnectionConfig(); config.AddChannel(QosType.ReliableSequenced); config.AddChannel(QosType.UnreliableSequenced); tuner.maxPacketSize = 500; NetworkServer.Configure(tuner, 10); NetworkServer.Listen(7070); } }