UnityEditor.CurveEditorWindow.DoUpdateCurve C# (CSharp) Method

DoUpdateCurve() private method

private DoUpdateCurve ( bool exitGUI ) : void
exitGUI bool
return void
        private void DoUpdateCurve(bool exitGUI)
        {
            if (((this.m_CurveEditor.animationCurves.Length > 0) && (this.m_CurveEditor.animationCurves[0] != null)) && this.m_CurveEditor.animationCurves[0].changed)
            {
                this.m_CurveEditor.animationCurves[0].changed = false;
                this.RefreshShownCurves();
                this.SendEvent("CurveChanged", exitGUI);
            }
        }