UnityEditor.AnimationClipInfoProperties.GetCurve C# (CSharp) Метод

GetCurve() публичный Метод

public GetCurve ( int index ) : AnimationCurve
index int
Результат AnimationCurve
        public AnimationCurve GetCurve(int index)
        {
            AnimationCurve animationCurveValue = null;
            SerializedProperty curveProperty = this.GetCurveProperty(index);
            if (curveProperty != null)
            {
                animationCurveValue = curveProperty.animationCurveValue;
            }
            return animationCurveValue;
        }