You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
577 B
21 lines
577 B
|
20 hours ago
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using Unity.Collections;
|
||
|
|
using Unity.Networking.Transport;
|
||
|
|
using Unity.Networking.Transport.Utilities;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace GameCore.Network
|
||
|
|
{
|
||
|
|
public class NewBehaviourScript : ScriptableObject
|
||
|
|
{
|
||
|
|
// private NetworkDriver CreateNetworkDriver()
|
||
|
|
// {
|
||
|
|
// var settings = new NetworkSettings(Allocator.Temp);
|
||
|
|
// settings.WithNetworkConfigParameters(disconnectTimeoutMS: 5000);
|
||
|
|
// settings.WithReliableStageParameters(32);
|
||
|
|
//
|
||
|
|
// }
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|