Skip to content
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: manually control swipe speed in function swipe #164

Open
raphtastisch opened this issue Jan 3, 2024 · 1 comment
Open

Comments

@raphtastisch
Copy link

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.

@mrsafalpiya
Copy link

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants