sketch.js: reduce amount of layers for 3D text

This commit is contained in:
tym2k1 2025-02-22 04:25:42 +01:00
parent 3232913c81
commit f41b131563
No known key found for this signature in database
GPG key ID: 409330E8D7E4BF83

View file

@ -140,8 +140,8 @@ class Text3D {
this.fromColor = fromColor; this.fromColor = fromColor;
this.toColor = toColor; this.toColor = toColor;
this.textString = textString; this.textString = textString;
this.depth = 150; // Number of layers for 3D effect this.depth = 30; // Number of layers for 3D effect
this.depthSpacing = 0.15; // Depth spacing between layers this.depthSpacing = 0.60; // Depth spacing between layers
this.rotationY = 0; this.rotationY = 0;
} }