Kinect.KinectManager.GetJointCount C# (CSharp) Method

GetJointCount() public method

Gets the the number of body joints, tracked by the sensor.
public GetJointCount ( ) : int
return int
        public int GetJointCount()
        {
            return sensorData != null ? sensorData.jointCount : 0;
        }
KinectManager