Hi,
I am running the Capsule Hands scene, and I want my app to do something when a Pinch gesture is detected. So I added the following line in UpdatedHand() in CapsuleHand.cs to start:
Debug.Log((this.GetComponent(typeof(PinchDetector)) as PinchDetector).IsPinching);
It works well when my right hand is detected i.e. returns true when right hand is pinched but it returns false no matter how my left hand is detected. In addition, I tried changing the Handedness to Left (default was right), and nothing happens. not even a printout whether it was true or false. I am quite baffled. Can anyone help?