I needed some help instantiating an object using the gesture classification example script provided. I am trying to make a for loop for when you use the pinch gesture it will instantiate the object for example. I'm having a little trouble with the script.
Here is an example of my code:
for ( var gesture = GestureClassification.PostureType.None; gesture < GestureClassification.PostureType.Pinch; gesture++)
{
//Instantiate(object);
}