task(C4): use_pixi_renderer flag on by default with e2e proof

This commit is contained in:
Agent Zero
2026-08-27 12:58:36 +02:00
parent 738e4e8373
commit eb8d6231c5
4 changed files with 51 additions and 4 deletions
+8
View File
@@ -13,3 +13,11 @@
/** Ist der V2-Werkzeugpfad (Dispatcher/CADDocument) aktiv? Default: ja. */
export const V2_TOOLS_ENABLED: boolean =
import.meta.env.VITE_TOOL_DISPATCHER !== 'legacy';
/**
* Task C4: Pixi als Primär-Renderer für V2-Elemente (Overlay über Legacy).
* Default: ja (durch phase-a-verify E2E abgesichert).
* Opt-out: VITE_USE_PIXI=false.
*/
export const USE_PIXI_RENDERER: boolean =
import.meta.env.VITE_USE_PIXI !== 'false';