We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6d0a45 commit eb61611Copy full SHA for eb61611
Assets/Scripts/Accounts/BackendComms/UnisaveAccountsManager.cs
@@ -11,7 +11,7 @@
11
public class UnisaveAccountsManager : AccountsManager
12
{
13
#if UNITY_WEBGL && !UNITY_EDITOR
14
- private const float UPDATE_RATE = 15f;
+ private const float UPDATE_RATE = 60f;
15
#else
16
private const float UPDATE_RATE = 120f;
17
#endif
@@ -140,6 +140,7 @@ public void SavePlayer()
140
141
Dirty = false;
142
_savePanel.SetActive(false);
143
+ _lastSave = Time.realtimeSinceStartup;
144
145
if (_player == null)
146
return;
0 commit comments