How would you add events for progress bars?

What i mean by that is,
I have a progress bar widget, that is binded to microphone audio. Is there a way to add events to said progress bar, for example, if it reaches 75%, something spawns in, etc…

Progress bars have no delegates to bind to, to hook into them. You’ll have to put the logic in whatever is driving the progress bar to begin with.

The only part where you could try to link into is with the ui bind. I personally don’t use it though as it updates too often, I prefer event driven logic where possible for performance.

1 Like