From 6d7eeaab27c722b760ad2dac048ee0910b9002f1 Mon Sep 17 00:00:00 2001 From: Phillip Tarrant Date: Fri, 10 Jul 2026 15:31:59 -0500 Subject: [PATCH] tune(client): considering rotation 2.0s -> 3.0s (phrases linger longer) By-hand cold-start test showed 3 phrases before the response; 1.5x the cadence so each line stays on screen a touch longer. Co-Authored-By: Claude Opus 4.8 (1M context) --- client/scripts/ui/considering_indicator.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/scripts/ui/considering_indicator.gd b/client/scripts/ui/considering_indicator.gd index ee531ed..29843e8 100644 --- a/client/scripts/ui/considering_indicator.gd +++ b/client/scripts/ui/considering_indicator.gd @@ -7,7 +7,7 @@ extends Node ## harness). One instance persists on the harness so the rotation index is not ## reset per call (spec decision 4). -const ROTATE_SECONDS := 2.0 +const ROTATE_SECONDS := 3.0 var _phrases: ConsideringPhrases var _timer: Timer