Kinect.KinectManager.GetJointCount C# (CSharp) 메소드

GetJointCount() 공개 메소드

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