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 <noreply@anthropic.com>
This commit is contained in:
2026-07-21 16:00:45 -04:00
co-authored by Claude Opus 4.8
parent 4cd18fb9f4
commit ae994c27e6
+2 -2
View File
@@ -12,8 +12,8 @@
// ---- KNOBS ----------------------------------------------------------------- // ---- KNOBS -----------------------------------------------------------------
float MATCH = 1.0f; // ScaleWithScreenSize only. 0=scale by width, 1=by height 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 HUD_SCALE = 0.85f; // ScaleWithScreenSize only. <1 = smaller HUD + more room
float WORLD_SCALE = 1.0f; // ConstantPixelSize only. <1 = smaller in-world labels float WORLD_SCALE = 0.8f; // ConstantPixelSize only. <1 = smaller in-world labels
bool LIST_ONLY = false; // true = report only, change nothing bool LIST_ONLY = false; // true = report only, change nothing
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------