Kinect.KinectManager.GetBodyFrameData C# (CSharp) Method

GetBodyFrameData() public method

Gets the body frame as one csv line, or returns empty string if there is no new body frame.
public GetBodyFrameData ( long &liRelTime, float &fUnityTime ) : string
liRelTime long Reference to variable, used to compare frame times.
fUnityTime float Reference to variable, used to save the current Unity time.
return string
        public string GetBodyFrameData(ref long liRelTime, ref float fUnityTime)
        {
            return KinectInterop.GetBodyFrameAsCsv(sensorData, ref bodyFrame, ref liRelTime, ref fUnityTime);
        }
KinectManager