From f41b131563a74ba1fa1e4ddf7f5ff92a593bb679 Mon Sep 17 00:00:00 2001 From: Tymoteusz Burak Date: Sat, 22 Feb 2025 04:25:42 +0100 Subject: [PATCH] sketch.js: reduce amount of layers for 3D text --- sketch.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sketch.js b/sketch.js index 87fe4c2..1dcd51e 100644 --- a/sketch.js +++ b/sketch.js @@ -140,8 +140,8 @@ class Text3D { this.fromColor = fromColor; this.toColor = toColor; this.textString = textString; - this.depth = 150; // Number of layers for 3D effect - this.depthSpacing = 0.15; // Depth spacing between layers + this.depth = 30; // Number of layers for 3D effect + this.depthSpacing = 0.60; // Depth spacing between layers this.rotationY = 0; }