I need to write on the canvas the elapsed time from the first frame.
When I use the TVico streaming I only get a 0 value from the skeletonData.Timestamp.
Is there a way to stream, together with the skeleton, the frame time?
void OnGUI()
{
GUI.color = Color.red;
GUI.skin.label.fontSize = 20;
message = new DateTime((long)skeletonData.Timestamp).ToString(“ss.fff”);
GUILayout.Label(message);
}