Kinect.VisualGestureManager.IsTrackingGesture C# (CSharp) Method

IsTrackingGesture() public method

Determines whether the given gesture is in the list of detected gestures.
public IsTrackingGesture ( string gestureName ) : bool
gestureName string Gesture name.
return bool
        public bool IsTrackingGesture(string gestureName)
        {
            return gestureNames.Contains(gestureName);
        }