-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Add Slider::snap_values
to snap slider to user-specified values
#2523
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good start, but I actually think smart-aim and snap-values are orthogonal. That is: I see no reason why you shouldn't be able to turn either feature on/off independently.
If smart-aim is enabled, perform that. If there are snap-values, snap to the closest one (if within aim_radius). Done!
Snap aim slider
Co-authored-by: Emil Ernerfeldt <[email protected]>
Co-authored-by: Emil Ernerfeldt <[email protected]>
Co-authored-by: Emil Ernerfeldt <[email protected]>
// Divide aim_radius by the granularity we want | ||
if self.snap_values_only || closest_distance < ui.input().aim_radius() as f64 / 15.0 { | ||
// Multiply aim_radius by the granularity we want | ||
if self.snap_values_only || closest_distance < ui.input(|i| i.aim_radius()) * 5.0 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think some kind of multiplier is necessary here, but I'm not sure how we should determine what it is.
With no multiplier, the aim radius is too small for it to actually snap. The precision is too tight for using a mouse.
By multiplying the aim radius by 5 as I have here, the snap works more like I expect.
Slider::snap_values
to snap slider to user-specified values
@@ -5,7 +5,7 @@ NOTE: [`epaint`](crates/epaint/CHANGELOG.md), [`eframe`](crates/eframe/CHANGELOG | |||
|
|||
|
|||
## Unreleased | |||
|
|||
* Add `Slider::snap_values`, which lets the user define certain points to snap the slider to when clicking or dragging ([#2523](https://github.com/emilk/egui/pull/2523)). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Add `Slider::snap_values`, which lets the user define certain points to snap the slider to when clicking or dragging ([#2523](https://github.com/emilk/egui/pull/2523)). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we autogenerate the changelog now
Allows user to set "snap" points with
Slider::smart_aim_values
. When the slider marker is within a user-specified range of one of these points, it will jump to that point. Ifsmart_aim
is disabled, then these values don't do anything. Ifsmart_aim
is enabled, then regular smart aim is used as normal whenever the marker is outside the user-specified range of these snap points.I added it to the demo app for seeing how it works. I'm open to feedback to make sure it fits in with the structural and stylistic requirements of the project.