We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1977c2c commit c7471d1Copy full SHA for c7471d1
Assets/WebGLTemplates/Develop/debug-console.js
@@ -21,7 +21,11 @@ if (getCookie("addTimestamp") === "false") {
21
addTimestamp = false;
22
}
23
24
-initializeToggleButton(false);
+const urlParams = new URLSearchParams(window.location.search);
25
+const debugParam = urlParams.get('debug');
26
+const debug = debugParam === 'true';
27
+
28
+initializeToggleButton(debug);
29
initializeDebugConsole();
30
31
0 commit comments