//swipe detect | |
if (_swipeLeft != null && deltaAngle > 0) | |
{ | |
_swipeLeft.Invoke(_handFeature); | |
} | |
else if (_swipeRight != null && deltaAngle < 0) | |
{ | |
_swipeRight.Invoke(_handFeature); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment