Kinect.KinectManager.SetBodyFrameData C# (CSharp) Method

SetBodyFrameData() public method

Sets the body frame from the given csv line.
public SetBodyFrameData ( string sLine ) : bool
sLine string The body frame as csv line.
return bool
        public bool SetBodyFrameData(string sLine)
        {
            if (sensorData != null && sensorData.isPlayModeEnabled)
            {
                sensorData.playModeData = sLine;
                return true;
            }

            return false;
        }
KinectManager