UnityEditor.NormalCurveRenderer.NormalCurveRenderer C# (CSharp) 메소드

NormalCurveRenderer() 공개 메소드

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