-
Notifications
You must be signed in to change notification settings - Fork 164
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
mouse() does not chain with itself #941
Comments
I should have designed the You can, however, do something like
|
You could even make it accelerate like this:
or
Though all of those aren't as smooth as the |
If you install from the latest main, you can now use Or, you can do
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While
mouse(left, 10)
andmouse(up, 10)
both work, it's currently impossible to have a keyboard key that sends the mouse up and to the left.mouse(left, 10).mouse(up, 10)
only moves the mouse left.As there are only 4 such combined directions, an alternate way to have the same functionality would be to have mouse() accept 4 additional direction strings:
up_left
,up_right
,down_left
,down_right
The text was updated successfully, but these errors were encountered: