From ebd8f8039d3c41609175e475976fa7fe8e6124df Mon Sep 17 00:00:00 2001 From: bmathews Date: Sun, 30 Nov 2025 16:41:41 -0800 Subject: [PATCH] 2-sided organic material --- src/components/GenericShape.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/GenericShape.tsx b/src/components/GenericShape.tsx index 8d0b3417..28183bb1 100644 --- a/src/components/GenericShape.tsx +++ b/src/components/GenericShape.tsx @@ -52,6 +52,7 @@ export function ShapeTexture({ clonedMaterial.map = texture; clonedMaterial.transparent = true; clonedMaterial.alphaTest = 0.9; + clonedMaterial.side = 2; // DoubleSide return clonedMaterial; }, [material, texture, isOrganic]);