feat(ui): A6.P1 — add ProbePushBack mirror to DebugVM
Runtime checkbox mirror for ProbePushBackEnabled. Toggling in DebugPanel (under ACDREAM_DEVTOOLS=1) flips all three [push-back] emission sites live without relaunch. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
642734dcd0
commit
dd95c10162
1 changed files with 12 additions and 0 deletions
|
|
@ -359,6 +359,18 @@ public sealed class DebugVM
|
|||
set => PhysicsDiagnostics.ProbeIndoorBspEnabled = value;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Phase A6.P1 cdb probe spike (2026-05-21). Runtime mirror of
|
||||
/// <see cref="PhysicsDiagnostics.ProbePushBackEnabled"/> (env var
|
||||
/// <c>ACDREAM_PROBE_PUSH_BACK</c>). Toggling here flips the three
|
||||
/// <c>[push-back]</c> emission sites live — no relaunch required.
|
||||
/// </summary>
|
||||
public bool ProbePushBack
|
||||
{
|
||||
get => PhysicsDiagnostics.ProbePushBackEnabled;
|
||||
set => PhysicsDiagnostics.ProbePushBackEnabled = value;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Runtime mirror of <c>RenderingDiagnostics.IndoorAll</c> — toggles all
|
||||
/// five indoor probes together. No dedicated env var; set any individual
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue