-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement collective debounce across all controls on a button binding, along with displays for collective value on bindings #637
Implement collective debounce across all controls on a button binding, along with displays for collective value on bindings #637
Conversation
I would put the debounce treshold to a default value of 1/2/5ms as discussed. |
With this PR, I'm unable to add new bindings. Also, the shadows on the drawers looks a little too dark imo |
f0292e0
to
2629d4e
Compare
Binding addition should be fixed now. As for the shadows, tbh I can hardly even notice them in the editor lol, if the menu background was more transparent I'd be able to see them. |
The new debounce behaves the same as the one for individual controls: when a value change occurs, it will lock to that new state for the configured amount of time, keeping track of any further state changes during that time. Once that time expires, it will switch back to the tracked state, and when the next input comes in it repeats the process.
All binding types also now have displays for their current value, for parity with the individual bindings and to help with figuring out possible input issues.