/// <summary> Returns whether two stackable objects are close enough in time to be stacked. Measures from end to start Hitsoundtime. </summary> private bool MeetsStackTime(Stackable anObject, Stackable anOtherObject) => anOtherObject.time - anObject.GetEndTime() <= StackTimeThreshold();