From e60b914d66fb08a6d0dd95b17c481318658a0c8d Mon Sep 17 00:00:00 2001 From: tudor <7089284+tudddorrr@users.noreply.github.com> Date: Wed, 5 Aug 2026 18:18:56 +0100 Subject: [PATCH] make default debounce time 0.5 seconds --- Assets/Talo Game Services/Talo/Runtime/TaloSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Talo Game Services/Talo/Runtime/TaloSettings.cs b/Assets/Talo Game Services/Talo/Runtime/TaloSettings.cs index ef6d1e7e..fa7522d2 100644 --- a/Assets/Talo Game Services/Talo/Runtime/TaloSettings.cs +++ b/Assets/Talo Game Services/Talo/Runtime/TaloSettings.cs @@ -36,7 +36,7 @@ public class TaloSettings : ScriptableObject public bool cachePlayerOnIdentify = true; [Tooltip("Number of seconds to wait before sending debounced requests (e.g. player updates, save updates and health checks)")] - public float debounceTimerSeconds = 1f; + public float debounceTimerSeconds = 0.5f; [Tooltip("Enable request verification to prevent replay attacks and tampering - this must also be enabled in the dashboard")] public bool verificationEnabled = false;