From 4942990424804c15dee06d3ad1383bf9c521cfab Mon Sep 17 00:00:00 2001 From: Lucas do Nascimento Date: Fri, 6 Aug 2021 22:30:10 -0300 Subject: [PATCH] Fix to only show console warn if debug is enabled --- src/nodes/math3d.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nodes/math3d.js b/src/nodes/math3d.js index 453f19060..bd022c699 100644 --- a/src/nodes/math3d.js +++ b/src/nodes/math3d.js @@ -567,7 +567,7 @@ } //glMatrix - else + else if (LiteGraph.debug) console.warn("No glmatrix found, some Math3D nodes may not work"); })(this);