/// <summary>
 /// Gets the minimum value of this curve.
 /// </summary>
 /// <returns>Returns the found minimum value, or default keyframe's if there's no keyframe on the given curve.</returns>
 public static float GetMinValue(this AnimationCurve _Curve)
 {
     return(_Curve.GetMinKeyframe().value);
 }