-
-
Notifications
You must be signed in to change notification settings - Fork 175
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
feature request - Double Click #201
Comments
This may be difficult to implement without bevyengine/bevy#5984 Because multi clicks happen rapidly, there is a non-insignificant chance that they will be gobbled up between frames. |
Do you mean that maybe you get like "Down - Down - Up - Up" instead of "Down - Up (Click) - Down - Up (Click, DoubleClick"? p.s: I found this post, it might be or might be not relevant; there's a comment saying that double clicks are like 200ms apart, I didn't confirm it myself tho -> stackexchange |
Not all users will be running at 60Hz, and it's possible for the application to hitch, causing a buildup of inputs. It won't be an an issue in most cases, but it also means the faster that someone double clicks, the more likely this is to occur. On an unrelated note, I'm also not certain what the best course of action is for getting the threshold timing. This is user-configurable, and is needed especially for accessibility reasons. Neither of these are blockers per se, but certainly need to be considered and discussed. |
Marking this as a wontfix for the time being. We can reconsider if we get better support in bevy, or get access to system double click settings. |
Hi, it would be amazing to have a new "DoubleClick" event (or perhaps a "MultipleClick" one), maybe something like this?
The text was updated successfully, but these errors were encountered: