Skip to content

Commit

Permalink
feat: recommend Fast3 as default for performance (#559)
Browse files Browse the repository at this point in the history
  • Loading branch information
uweeby committed Feb 1, 2021
1 parent b675e02 commit 8cbf6e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Mirror/Runtime/Transport/Kcp/KcpTransport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class KcpTransport : Transport
[Tooltip("How many messages can be received")]
public int ReceiveWindowSize = 8192;

public KcpDelayMode delayMode = KcpDelayMode.Normal;
public KcpDelayMode delayMode = KcpDelayMode.Fast3;
internal readonly Dictionary<IPEndPoint, KcpServerConnection> connectedClients = new Dictionary<IPEndPoint, KcpServerConnection>(new IPEndpointComparer());

public override IEnumerable<string> Scheme => new[] { "kcp" };
Expand Down

0 comments on commit 8cbf6e6

Please sign in to comment.