From 52532a161a228e6499c75e44ca735e341d30b027 Mon Sep 17 00:00:00 2001 From: Markez Date: Sun, 11 Jan 2026 17:44:42 +0400 Subject: [PATCH] feat: fix documentation opening tags for SetFrameRate --- Assets/FishNet/Runtime/Managing/Client/ClientManager.cs | 1 + Assets/FishNet/Runtime/Managing/Server/ServerManager.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/Assets/FishNet/Runtime/Managing/Client/ClientManager.cs b/Assets/FishNet/Runtime/Managing/Client/ClientManager.cs index d3e6ca6d..9b38e82d 100644 --- a/Assets/FishNet/Runtime/Managing/Client/ClientManager.cs +++ b/Assets/FishNet/Runtime/Managing/Client/ClientManager.cs @@ -120,6 +120,7 @@ public void SetRemoteServerTimeout(RemoteTimeoutType timeoutType, ushort duratio [SerializeField] private ushort _frameRate = NetworkManager.MAXIMUM_FRAMERATE; + /// /// Sets the maximum frame rate the client may run at. Calling this method will enable ChangeFrameRate. /// /// New value. diff --git a/Assets/FishNet/Runtime/Managing/Server/ServerManager.cs b/Assets/FishNet/Runtime/Managing/Server/ServerManager.cs index 55d879d0..d9527bab 100644 --- a/Assets/FishNet/Runtime/Managing/Server/ServerManager.cs +++ b/Assets/FishNet/Runtime/Managing/Server/ServerManager.cs @@ -172,6 +172,7 @@ public void SetRemoteClientTimeout(RemoteTimeoutType timeoutType, ushort duratio [SerializeField] private ushort _frameRate = NetworkManager.MAXIMUM_FRAMERATE; + /// /// Sets the maximum frame rate the client may run at. Calling this method will enable ChangeFrameRate. /// /// New value.