File tree Expand file tree Collapse file tree 4 files changed +0
-8
lines changed Expand file tree Collapse file tree 4 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,6 @@ public enum DefaultTransport
12
12
/// <summary>
13
13
/// LiteNetLib transport
14
14
/// </summary>
15
- LiteNetLib ,
16
- /// <summary>
17
- /// A custom transport
18
- /// </summary>
19
15
Custom
20
16
}
21
17
}
Original file line number Diff line number Diff line change 81
81
<Compile Include =" Data\FixedQueue.cs" />
82
82
<Compile Include =" Data\Transports\DefaultTransport.cs" />
83
83
<Compile Include =" Data\Transports\IUDPTransport.cs" />
84
- <Compile Include =" Data\Transports\LiteNetLib\LiteNetLibTransport.cs" />
85
84
<Compile Include =" Data\Transports\NetEventType.cs" />
86
85
<Compile Include =" Data\NetworkConfig.cs" />
87
86
<Compile Include =" Data\NetworkedPrefab.cs" />
Original file line number Diff line number Diff line change 11
11
using MLAPI . NetworkingManagerComponents . Binary ;
12
12
using MLAPI . Data . Transports ;
13
13
using MLAPI . Data . Transports . UNET ;
14
- using MLAPI . Data . Transports . LiteNetLib ;
15
14
16
15
namespace MLAPI . MonoBehaviours . Core
17
16
{
@@ -245,8 +244,6 @@ private object Init(bool server)
245
244
246
245
if ( NetworkConfig . Transport == DefaultTransport . UNET )
247
246
NetworkConfig . NetworkTransport = new UnetTransport ( ) ;
248
- else if ( NetworkConfig . Transport == DefaultTransport . LiteNetLib )
249
- NetworkConfig . NetworkTransport = new LiteNetLibTransport ( ) ;
250
247
else if ( NetworkConfig . Transport == DefaultTransport . Custom && NetworkConfig . NetworkTransport == null )
251
248
throw new NullReferenceException ( "The current NetworkTransport is null" ) ;
252
249
File renamed without changes.
You can’t perform that action at this time.
0 commit comments