Skip to content

Instantly share code, notes, and snippets.

@flushpot1125
Created November 19, 2017 05:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flushpot1125/7ae746bf8f534a93d70830d02d2bb7f5 to your computer and use it in GitHub Desktop.
Save flushpot1125/7ae746bf8f534a93d70830d02d2bb7f5 to your computer and use it in GitHub Desktop.
//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