Added Seconds history field to TrackedObject

This commit is contained in:
Albin Corén 2018-04-20 16:35:47 +02:00
parent f5a7a83ccb
commit cb1bcaf14f

View File

@ -27,6 +27,7 @@ namespace UnityEditor
{
EditorGUILayout.LabelField("Total points: ", trackedObject.TotalPoints.ToString(), EditorStyles.label);
EditorGUILayout.LabelField("Avg time between points: ", trackedObject.AvgTimeBetweenPointsMs.ToString() + " ms", EditorStyles.label);
EditorGUILayout.LabelField("Total history: ", trackedObject.TotalTimeHistory.ToString() + " seconds", EditorStyles.label);
}
Repaint();
}