From ae994c27e6791009e9942232b37c9f2bfdadc1ee Mon Sep 17 00:00:00 2001 From: ckoch Date: Tue, 21 Jul 2026 16:00:45 -0400 Subject: [PATCH] Bake real test values into UI tuner defaults Pasting the file verbatim was a no-op because the knobs shipped at 1.0, so every run reported KNOBS ...=1 and changed nothing. Default to HUD_SCALE=0.85 and WORLD_SCALE=0.8 so copying the file straight from the editor actually exercises the fix. Co-Authored-By: Claude Opus 4.8 --- tools/unity_uitune.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/unity_uitune.cs b/tools/unity_uitune.cs index fc5975f..6a46972 100644 --- a/tools/unity_uitune.cs +++ b/tools/unity_uitune.cs @@ -12,8 +12,8 @@ // ---- KNOBS ----------------------------------------------------------------- float MATCH = 1.0f; // ScaleWithScreenSize only. 0=scale by width, 1=by height -float HUD_SCALE = 1.0f; // ScaleWithScreenSize only. <1 = smaller HUD + more room -float WORLD_SCALE = 1.0f; // ConstantPixelSize only. <1 = smaller in-world labels +float HUD_SCALE = 0.85f; // ScaleWithScreenSize only. <1 = smaller HUD + more room +float WORLD_SCALE = 0.8f; // ConstantPixelSize only. <1 = smaller in-world labels bool LIST_ONLY = false; // true = report only, change nothing // ----------------------------------------------------------------------------