We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We already have mouse but it is an Enum. We could add more methods like
>>> mouse.current_pos (548, 139) >>> mouse.visible False >>> mouse.visible = not mouse.visible >>> mouse.recent_pos collections.deque([(521, 119), (538, 127), (548, 139)])
This would let us map mouse buttons to our constants, track recent cursor positions, etc, set cursor using image names...
Originally posted by @lordmauve in #316 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We already have
mouse
but it is an Enum. We could add more methods likeThis would let us map mouse buttons to our constants, track recent cursor positions, etc, set cursor using image names...
Originally posted by @lordmauve in #316 (comment)
The text was updated successfully, but these errors were encountered: