Created
November 19, 2017 05:22
-
-
Save flushpot1125/7ae746bf8f534a93d70830d02d2bb7f5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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