feat(render): Phase A8 — RenderingDiagnostics.ProbeVisibilityEnabled
Adds the ACDREAM_PROBE_VIS=1 env-var-toggleable flag for the indoor-cell visibility culling pipeline (#78). Mirrors the existing ProbeIndoor* pattern. DebugVM checkbox follows. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
d834188a4e
commit
6577c0a21c
3 changed files with 48 additions and 0 deletions
|
|
@ -345,6 +345,17 @@ public sealed class DebugVM
|
|||
set => RenderingDiagnostics.ProbeIndoorCullEnabled = value;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Phase A8 (2026-05-25). Runtime mirror of
|
||||
/// <c>RenderingDiagnostics.ProbeVisibilityEnabled</c>
|
||||
/// (env var <c>ACDREAM_PROBE_VIS</c>).
|
||||
/// </summary>
|
||||
public bool ProbeVisibility
|
||||
{
|
||||
get => RenderingDiagnostics.ProbeVisibilityEnabled;
|
||||
set => RenderingDiagnostics.ProbeVisibilityEnabled = value;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Indoor walking Phase 1 (2026-05-19). Runtime mirror of
|
||||
/// <c>PhysicsDiagnostics.ProbeIndoorBspEnabled</c> (env var
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue