Wrong /n should be \n (#2572)

This commit is contained in:
JesusLuvsYooh 2021-02-10 13:04:43 +00:00 committed by GitHub
parent 3394f755b9
commit 60574dd1ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,7 @@ public class NetworkManager : MonoBehaviour
/// fewer transport calls give us significantly better performance/scale.
/// if batch interval is 0, then we only batch until the Update() call
/// </summary>
[Tooltip("Server can batch messages up to Transport.GetMaxPacketSize to significantly reduce transport calls and improve performance/scale./nIf batch interval is 0, then we only batch until the Update() call. Otherwise we batch until interval elapsed (note that this increases latency).")]
[Tooltip("Server can batch messages up to Transport.GetMaxPacketSize to significantly reduce transport calls and improve performance/scale.\nIf batch interval is 0, then we only batch until the Update() call. Otherwise we batch until interval elapsed (note that this increases latency).")]
public float serverBatchInterval = 0;
/// <summary>