Fixed issue with TrackedObject AvgTimeBetweenPoints

This commit is contained in:
Albin Corén 2018-04-02 11:56:54 +02:00
parent 2e1805a041
commit ace1cee70e

View File

@ -37,6 +37,8 @@ namespace MLAPI.MonoBehaviours.Core
{
get
{
if (Framekeys.First == null || Framekeys.Last == null)
return 0;
float totalSpan = Framekeys.Last.Value - Framekeys.First.Value;
return (totalSpan / Framekeys.Count) * 1000f;
}