Wait until slider is released to trigger downstream components

I’m working on a series of plugins in C# that, long story short, trigger a fairly computationally intensive component near the end of the component stream.

The computation depends on many numeric parameters capture by sliders. However, moving slider values around (say, from 0.2 to 10.) triggers new solutions at each value in between and results in unnecessary additional computation at the end. Is there a way to detect a mouse click release on the slider, and only expire the solution once that occurs?

thanks in advance!

1 Like

not that I know of, I think the closest you can get to that behavior is by using a data dam that refreshes after a user set time, or set the data dam to manual update, but this will require two clicks.