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;
        }