UnityEditor.NormalCurveRenderer.NormalCurveRenderer C# (CSharp) Method

NormalCurveRenderer() public method

public NormalCurveRenderer ( AnimationCurve curve ) : System
curve UnityEngine.AnimationCurve
return System
        public NormalCurveRenderer(AnimationCurve curve)
        {
            this.m_Curve = curve;
            if (this.m_Curve == null)
            {
                this.m_Curve = new AnimationCurve();
            }
        }