From f6dc01a0dd004eb018640ba5887885c83da56fed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Fri, 9 Mar 2018 00:23:17 +0100 Subject: [PATCH] Removed LLAPI send delay --- MLAPI/MonoBehaviours/Core/NetworkingManager.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs index 258191e..87b3dbc 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs @@ -103,7 +103,10 @@ namespace MLAPI } NetworkTransport.Init(); - ConnectionConfig cConfig = new ConnectionConfig(); + ConnectionConfig cConfig = new ConnectionConfig() + { + SendDelay = 0 + }; //MLAPI channels and messageTypes NetworkConfig.Channels.Add("MLAPI_RELIABLE_FRAGMENTED_SEQUENCED", QosType.ReliableFragmentedSequenced);