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
I have a requirement, need lock min or lock max.
so I edit your code.
first add 2 public boolean value: public var leftLock = false public var rightLock = false
in beginTracking function
add 2 conditional expressions after "guard isTouchingLeftHandle || isTouchingRightHandle else { return false }":
if leftLock, isTouchingLeftHandle { return false } if rightLock, isTouchingRightHandle { return false }
it can work correct,
Can you add this feature to the master version ?
thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a requirement, need lock min or lock max.
so I edit your code.
first add 2 public boolean value:
public var leftLock = false
public var rightLock = false
in beginTracking function
add 2 conditional expressions after "guard isTouchingLeftHandle || isTouchingRightHandle else { return false }":
it can work correct,
Can you add this feature to the master version ?
thanks.
The text was updated successfully, but these errors were encountered: