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
Gestures are working without enable and isRight and isLeft methods are not working
The text was updated successfully, but these errors were encountered:
isRight and isLeft are not defined by the leap motion json. To find right or left, there is the type attribute.
Hand.type Type: string – either “right” or “left” Identifies whether this Hand is a right or a left hand.
from developer.leapmotion.com/documentation/javascript/api/Leap.Hand.html#Hand.type
So I added hand.type = json.hands[ i ].type; in LeapSocket.as line 383.
hand.type = json.hands[ i ].type;
and public var type:String; in Hand.as line 143.
public var type:String;
Working now.
Sorry, something went wrong.
@mgauth02 thanks, can you send a pull request?
No branches or pull requests
Gestures are working without enable and isRight and isLeft methods are not working
The text was updated successfully, but these errors were encountered: