We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccf1b04 commit c447840Copy full SHA for c447840
wled00/FX.cpp
@@ -3048,7 +3048,8 @@ static uint16_t rolling_balls(void) {
3048
float cfac = float(scale8(8, 255-SEGMENT.speed) +1)*20000.0f; // this uses the Aircoookie conversion factor for scaling time using speed slider
3049
3050
bool hasCol2 = SEGCOLOR(2);
3051
- if (!SEGMENT.check2) SEGMENT.fill(hasCol2 ? BLACK : SEGCOLOR(1));
+ //if (!SEGMENT.check2) SEGMENT.fill(hasCol2 ? BLACK : SEGCOLOR(1));
3052
+ if (!SEGMENT.check2) SEGMENT.fade_out(253); // WLEDMM adding a bit of trail
3053
3054
for (int i = 0; i < numBalls; i++) {
3055
float timeSinceLastUpdate = float((strip.now - balls[i].lastBounceUpdate))/cfac;
0 commit comments