Object scroll animation bug

As you can see in the screenshot, there is a weirdly overlapping shape. It should be visible on the 2nd screen to the right, and only appear after a scroll animation.

The scroll animation uses the following formulas for the “speed” parameter:

$(si(screenc)-1)*100*si(rwidth)/si(rwidth)$

The animation is centered to screen 2.

A few times a day this object will glitch out and appear where it shouldn’t be, it fixes itself immediately when I scroll the launcher pages.

Oxygen OS 16, OnePlus 13R, stock OnePlus launcher

Nice setup, but you might want to try simplifying that speed formula! Since si(rwidth)/si(rwidth) is essentially just multiplying by 1, you can probably trim it down to just (si(screenc)-1)*100. Sometimes Kustom struggles to parse redundant math in real-time when you’re scrolling fast, which leads to those glitches. Worth a shot to see if it stabilizes things!