Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions js/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,9 @@ export const versions = {
{ color: hsl(0.56, 1.0, 0.8), at: 0.9 },
{ color: hsl(0.57, 1.0, 1.0), at: 1.0 },
],
raindropLength: 1.2,
// Short enough that one full brightness cycle is always visible across the column
// (numColumns * 0.01 / raindropLength > 1), ensuring dark gaps between glyphs.
raindropLength: 0.45,
glyphRandomFlip: true,
},

Expand All @@ -682,7 +684,9 @@ export const versions = {
animationSpeed: 0.75,
cycleSpeed: 0.045,
fallSpeed: 0.55,
raindropLength: 0.55,
// Match classic 3d raindropLength so dark gaps are always visible
// (numColumns * 0.01 / raindropLength = 1.47 cycles, consistent with trinity/bugs).
Comment thread
ap0ught marked this conversation as resolved.
Outdated
raindropLength: 0.3,

// Keep 3D "tunnel" clean.
isPolar: false,
Expand Down
Loading