From dd7692dfc5c4231159263795cf3e433e44c404ca Mon Sep 17 00:00:00 2001 From: Rezmason Date: Fri, 30 Sep 2022 00:12:48 -0700 Subject: [PATCH] Left in a console log by mistake --- js/regl/stripePass.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/regl/stripePass.js b/js/regl/stripePass.js index 3eff147..0463a71 100644 --- a/js/regl/stripePass.js +++ b/js/regl/stripePass.js @@ -34,7 +34,6 @@ export default ({ regl, config }, inputs) => { // Expand and convert stripe colors into 1D texture data const stripeColors = "stripeColors" in config ? config.stripeColors : config.effect === "pride" ? prideStripeColors : transPrideStripeColors; - console.log(stripeColors); const stripeTex = make1DTexture( regl, stripeColors.map((color) => [...colorToRGB(color), 1])