Skip to content

Conversation

@dmccrevan
Copy link

Related to #10

Overview

I created a fix to slow down the vertical speed by 2.

Future

I can add a property to the settings to see if the user would want to enable/disable this

delay = 50;
/* If the direction is UP or DOWN slow down the delay using a 2:1 ration */
if(direction == 3 || direction == 4) {
delay = delay * 1;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How does this work? Am I missing something, or should this be delay = delay * 2?

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

Successfully merging this pull request may close these issues.

2 participants