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
It would be cool if the swipe speed of the function "swipe" could be set manually.
I assume its enough if you do the following:
Change:
async swipe (dir = 'right') { if (onSwipe) onSwipe(dir) const power = 1.3 const disturbance = (Math.random() - 0.5) / 2
To:
async swipe (dir = 'right', power=1.3) { if (onSwipe) onSwipe(dir) const disturbance = (Math.random() - 0.5) / 2
Probably it's also a good idea to do the same with disturbance if you are on it.
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
No branches or pull requests
It would be cool if the swipe speed of the function "swipe" could be set manually.
I assume its enough if you do the following:
Change:
To:
Probably it's also a good idea to do the same with disturbance if you are on it.
The text was updated successfully, but these errors were encountered: